I have a Stylesheet with a load of pre-setup styles (obviously) and I want to apply X style to X object using a JavaScript function.
Let's say I have a <table> with a style class set to it and I want to change that style class to another one from the Stylesheet.... can it be done?
I'm talking about a "real-time" change here and not a "you must reload the page" change
I know you can do things like onmouseover="this.style.background.... blablaa but I want to apply an entire class not bits and pieces!
Thanks.