Javascript hover effect removes pre defined style. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T17:14:53Z http://stackoverflow.com/feeds/question/766107 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/766107/javascript-hover-effect-removes-pre-defined-style 0 Javascript hover effect removes pre defined style. Chris B. 2009-04-19T21:14:57Z 2009-04-19T21:49:18Z <p>I am using a <a href="http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=312" rel="nofollow">tutorial from Imar Spaanjaars' web site</a> to make an entire table row clickable and have a hover effect on it also. Once the user hovers over the table row it removes the pre defined background color for that row. I want to make it so that way it does not overwrite this style. How might I do that? </p> <pre><code> &lt;script type="text/javascript"&gt; function ChangeColor(tableRow, highLight) { if (highLight) { tableRow.style.backgroundColor = '#dcfac9'; } else { tableRow.style.backgroundColor = 'white'; } } function DoNav(theUrl) { document.location.href = theUrl; } &lt;/script&gt; </code></pre> <p>If you have any better suggestions to accomplish this task I would love to hear them! </p> <p>My tr tag has a bgcolor tag in it that is set by my php if that specific piece of mail has been read or not. </p> http://stackoverflow.com/questions/766107/javascript-hover-effect-removes-pre-defined-style/766128#766128 5 Answer by Rick Copeland for Javascript hover effect removes pre defined style. Rick Copeland 2009-04-19T21:29:19Z 2009-04-19T21:49:18Z <p>If the original background color is specified via a stylesheet or (as in your case) a legacy <code>bgcolor</code> attribute, then you can just clear out the style on the element when you're done, and it'll revert:</p> <pre><code>function ChangeColor(tableRow, highLight) { if (highLight) { tableRow.style.backgroundColor = '#dcfac9'; } else { tableRow.style.backgroundColor = ''; } } </code></pre> <p>That said, you'd probably be better off using a CSS class and associated rules to represent the highlighted state of the row and add/remove that as you like:</p> <pre><code>tr { backgroundColor: &lt;whatever&gt; } tr.highlighted { backgroundColor: #dcfac9 } </code></pre> <p>Then your Javascript becomes</p> <pre><code>function ChangeColor(tableRow, highLight) { if(highLight) { tableRow.className = 'highlighted'; } else { tableRow.className = ''; } } </code></pre> <p>In addition to keeping specific styles out of your script <em>and</em> markup (where they become difficult to maintain over time), this lets you add or change hover styles (say, bold text, or a border) without adding complexity to the code.</p> <p>If you have access to a Javascript library such as <a href="http://www.prototypejs.org" rel="nofollow">Prototype</a>, <a href="http://extjs.com" rel="nofollow">Ext.js</a> or <a href="http://dojotoolkit.org" rel="nofollow">Dojo</a>, then you can use their class manipulation functions instead, which will handle the case where you want to preserve an existing className, or are using multiple classes for on a single element.</p>