// In this example, each row in a table will get a red background when
// the mouse moves over it and a white background when the mouse leaves.
$("tr").hover(function(){
$(this).css("background","#0000ff");
},
function(){
$(this).css("background","#ffffff");
});
Group items matching
in title, tags, annotations or urljquery Hover Sub Tag Cloud - 0 views
Working with jQuery, Part 2: Building tomorrow's Web applications today - 0 views
-
-
attr(name)
-
// will change the image source, and the image displayed on the page will change $("img").attr("src", "myimage.jpg");
- ...5 more annotations...
1 - 5 of 5
Showing 20▼ items per page