Change an element's CSS class with Javascript - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T22:27:23Zhttp://stackoverflow.com/feeds/question/195951http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript4Change an element's CSS class with JavascriptNathan Smith2008-10-12T20:06:43Z2008-10-12T22:32:09Z
<p>I want to change a CSS class of an HTML element in response to an onClick event using javascript.</p>
http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript/195953#195953-1Answer by Steve Moyer for Change an element's CSS class with JavascriptSteve Moyer2008-10-12T20:07:45Z2008-10-12T20:07:45Z<p>Okay ... you have our permission!</p>
http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript/195961#195961-3Answer by Jon Galloway for Change an element's CSS class with JavascriptJon Galloway2008-10-12T20:12:16Z2008-10-12T20:12:16Z<p>This is easiest with a library like jQuery:</p>
<pre><code><input type="button" onClick="javascript:test_byid();" value="id='second'" />
<script>
function test_byid()
{
$("#second").toggleClass("highlight");
}
</script>
</code></pre>
http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript/195977#195977-8Answer by roenving for Change an element's CSS class with Javascriptroenving2008-10-12T20:16:33Z2008-10-12T20:41:03Z<p>No offense, but it's unclever to change class on-the-fly as it forces the css-interpretator to recalculate the visual presentation of the entire webpage ...</p>
<p>-- the reason is that it is nearly impossible for the css-interpretator to know if any inheritance or cascading could be changed, so the short answer is:</p>
<p>Never ever change className on-the-fly !-)</p>
<p>But usually you'll only need to change a property or two, and that is easily implemented:</p>
<pre><code>function highlight(elm){
elm.style.backgroundColor ="#345";
elm.style.color = "#fff";
}
</code></pre>
http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript/196016#1960161Answer by Eric Wendelin for Change an element's CSS class with JavascriptEric Wendelin2008-10-12T20:33:06Z2008-10-12T20:33:06Z<p>You can use node.className like so:</p>
<pre>
document.getElementById("blah").className = "cssclass";
</pre>
http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript/196038#1960388Answer by Peter Boughton for Change an element's CSS class with JavascriptPeter Boughton2008-10-12T20:45:36Z2008-10-12T20:45:36Z<p>To add a class to an element:</p>
<pre><code>document.getElementById("MyElement").className += " MyClass";
</code></pre>
<p>To remove a class from an element:</p>
<pre><code>document.getElementById("MyElement").className = document.getElementById("MyElement").className.replace(/\bMyClass\b/','')
</code></pre>
<p>To do that in an onclick event:</p>
<pre><code><script type="text/javascript">
function changeClass()
{
// code examples from above
}
</script>
...
<button onclick="changeClass()">My Button</button>
</code></pre>
<p><br/></p>
<p>Better yet, use jQuery which allows you to do the following:</p>
<pre><code>$j('#MyElement').addClass('MyClass');
$j('#MyElement').removeClass('MyClass');
$j('#MyElement').toggleClass('MyClass');
</code></pre>
<p>And also:</p>
<pre><code><script type="text/javascript">
function changeClass()
{
// code examples from above
}
$j(':button:contains(My Button)').click(changeClass);
</script>
...
<button>My Button</button>
</code></pre>
<p><br/></p>