onmouseover

How to highlight links in the div on mouseover.

Hi, I have div with a few links spread out in the content. I would like to highlight all the links in the div onmouseover. Is there jquery solution that works in FF, IE and chrome. Thanks. ...

HTML5 canvas advanced framework

Hi, I need HTML5 canvas framework to do: draw object (e.g. rectangle) on onmouseover event of the object change color/border style on click do some js action thx EDIT: I have finally decided to use raphaeljs (alternative would be dojo). This framework is awesome. (It doesn't need HTML5 canvas and uses SVG) ...

problem in rails with "cycle" over classes in a CSS and onmouseover, onmouseout

i have this code in my index.html: <div id="users-list"> <tr class="<%= cycle('odd', 'even') %>" onmouseover="this.className='over';" onclick="location.href='<%= user_path(user) %>'" > <td><%= user.surname %></td> <td><%= user.name %></td> </tr> </div> as part of a table, and this associated css: #users-list .odd { backg...