rollover images with Jquery
- by Matt
Beginner question here. I'm going to make a Jquery function that is used to change an image when hovering over it. I use the id name as the selector. How do I make it generic so that I don't have to have a copy of the function for every single tag with a rollover image?
$("#home img").hover(
function(){
blah
},
function(){
blah
}
);