Change an element's CSS class with Javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T22:27:23Z http://stackoverflow.com/feeds/question/195951 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript 4 Change an element's CSS class with Javascript Nathan Smith 2008-10-12T20:06:43Z 2008-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 -1 Answer by Steve Moyer for Change an element's CSS class with Javascript Steve Moyer 2008-10-12T20:07:45Z 2008-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 -3 Answer by Jon Galloway for Change an element's CSS class with Javascript Jon Galloway 2008-10-12T20:12:16Z 2008-10-12T20:12:16Z <p>This is easiest with a library like jQuery:</p> <pre><code>&lt;input type="button" onClick="javascript:test_byid();" value="id='second'" /&gt; &lt;script&gt; function test_byid() { $("#second").toggleClass("highlight"); } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript/195977#195977 -8 Answer by roenving for Change an element's CSS class with Javascript roenving 2008-10-12T20:16:33Z 2008-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#196016 1 Answer by Eric Wendelin for Change an element's CSS class with Javascript Eric Wendelin 2008-10-12T20:33:06Z 2008-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#196038 8 Answer by Peter Boughton for Change an element's CSS class with Javascript Peter Boughton 2008-10-12T20:45:36Z 2008-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>&lt;script type="text/javascript"&gt; function changeClass() { // code examples from above } &lt;/script&gt; ... &lt;button onclick="changeClass()"&gt;My Button&lt;/button&gt; </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>&lt;script type="text/javascript"&gt; function changeClass() { // code examples from above } $j(':button:contains(My Button)').click(changeClass); &lt;/script&gt; ... &lt;button&gt;My Button&lt;/button&gt; </code></pre> <p><br/></p>