CSS/Image Rollover/jQuery?
I am unsu开发者_StackOverflowre how to approach this. I have an image that when you roll over parts of this a word or another picture will pop-out. That I am pretty confident I can do, the one part I am unsure about is can I get those to remain on the picture after rollover or on click? Maybe do some of this with jQuery?
Thanks for the advice
jQuery:
$('.imageClass').click('#linkId').show();
It should not disappear unless you use the .toggle() or .bind() function.
$('.foo').click(function() {
$('.something').show();
});
精彩评论