Programming Tips - jQuery: Change icons in a table row when the mouse is over

Date: 2014apr5 Update: 2025aug12 Language: javaScript Library: jQuery Platform: web Q. jQuery: Change icons in a table row when the mouse is over A. Use jquery's hover() like this: Add a class to each table row:
<tr class=oneitem> .... </tr>
Search for it and turn it on:
$('.oneitem').hover(enableIcons, disableIcons);
Make enableIcons() and disableIcons() yourself.