Bedouin
Bedouin

Reputation: 83

How to show caption in Nivo Slider only after hover event?

I need to show caption of image in Nivo Slider after hover event.

I try to hide caption using css:

.nivo-caption {
    text-align: center;
    dislay:none;
}

And display this like as:

$('#slider').hover(function(){ $(".nivo-caption").show();});

But it does not work

Upvotes: 0

Views: 227

Answers (1)

Samudrala Ramu
Samudrala Ramu

Reputation: 2106

Try This

$('#slider').mouseover(function(){ $("#slider").addClass("nivo-caption");});

Upvotes: 0

Related Questions