Jump to content

Adding to a script


Ell20

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.