How do I style a clicked link with CSS in Javascript?
Here is my link:
<li><id="106" onClick="configurator(this)" href="#">10.6 µ</a><li>
I am trying to run a function called configurator and return the ID of the this link so I can set the css.
Help! I am a JS newbie!
Here is my function:
function configurator(clicked) {
document.getElementById(clicked);
alert(clicked.name);
}
