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 Link to comment https://forums.phpfreaks.com/topic/118609-adding-to-a-script/ Share on other sites More sharing options...
Xurion Posted August 7, 2008 Share Posted August 7, 2008 This is a JavaScript question. Link to comment https://forums.phpfreaks.com/topic/118609-adding-to-a-script/#findComment-610621 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. Link to comment https://forums.phpfreaks.com/topic/118609-adding-to-a-script/#findComment-610719 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.