rnnbrwn
rnnbrwn

Reputation: 55

JQuery, Passing Parameters

I'm working with some very basic jquery code and would like to condense what I've done into one function with passed parameters.

I have a few of these:

$(".about").hover(function() {
    $(this).attr("src","_img/nav/about_over.gif");
        }, function() {
    $(this).attr("src","_img/nav/about_off.gif");
});


$(".artists").hover(function() {
    $(this).attr("src","_img/nav/artists_over.gif");
        }, function() {
    $(this).attr("src","_img/nav/artists_on.gif");
});


$(".help").hover(function() {
    $(this).attr("src","_img/nav/help_over.gif");
        }, function() {
    $(this).attr("src","_img/nav/help_off.gif");
});

But would obviously like to pass the the title of the image ("about", artists", "help") so that I could cut down on repeated code.

Any help much appreciated.

Thanks

Ronnie

Upvotes: 1

Views: 4102

Answers (4)

User
User

Reputation: 3782

I'm not sure what's going on with the second function in the hover function, but you can do something like this:

$(".about .artists .help").hover(function(){
    $(this).attr('src','_img/nav/' + $(this).attr('class') + '_over.gif')
});

you can apply the same principle to your on/off gifs too.

Upvotes: 0

Cory House
Cory House

Reputation: 15045

function hover(img) {
    $("."+img).hover(function() {
    $(this).attr("src","_img/nav/"+img+"_over.gif");
       }, function() {
    $(this).attr("src","_img/nav/"+img+"_off.gif");
    });
}

Upvotes: 4

Peter Di Cecco
Peter Di Cecco

Reputation: 1578

function HoverPic(name){
    $("."+name).hover(function() {
        $(this).attr("src","_img/nav/"+name+"_over.gif");
            }, function() {
        $(this).attr("src","_img/nav/"+name+"_off.gif");
    });
}

Upvotes: 1

Acorn
Acorn

Reputation: 867

You could something like this:

function ElementHover(class_name, src_over, src_off) {
   $("."+class_name+"").hover(function() {
      $(this).attr("src", src_over);
      }, function() {
      $(this).attr("src", src_off);
   });

}

Upvotes: 1

Related Questions