Ell20 Posted August 7, 2008 Share Posted August 7, 2008 Hi, I have a script which has the following code: if(nums <= 10 && (document.getElementById('num' + pickId).style.backgroundColor != 'red') && (document.getElementById('previouslySelected').value == 0)){ document.getElementById('value' + nums).value=pickId; document.getElementById('num' + pickId).style.backgroundColor='red'; nums++; } The above script basically changes the background colour of the TD cell to red when clicked. I wanted to add some code so that if the cell had already been clicked it turned it back to white. Here is my attempt, however it dosent appear to do anything, can anyone direct me as to where I am going wrong? if(document.getElementById('num' + pickId).style.backgroundColor == 'red'){ document.getElementById('value' + nums).value=''; document.getElementById('num' + pickId).style.backgroundColor='white'; nums--; } Thanks for any help Quote Link to comment Share on other sites More sharing options...
Xurion Posted August 7, 2008 Share Posted August 7, 2008 This is a JavaScript question. Quote Link to comment Share on other sites More sharing options...
Ell20 Posted August 7, 2008 Author Share Posted August 7, 2008 Can anyone help? If this is the wrong part of the forum could someone please move it, thanks. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.