Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I store mouse event handlers inside css class?

Status
Not open for further replies.

redsss

Programmer
Mar 17, 2004
72
US
I am using table header cells to hold hyperlinks and am including mouse attributes etc like so:

Code:
<th class="subitem" onMouseover="this.className='subhover'"  onMouseout="this.className='subitem'">

The subitem class contains a lot of attributes like colors, etc.

Is there a way to store events like onMouseover event handler name inside the subitem class, since all the onMouseover events contain the same data?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top