[jQuery] Image Rollover
[jQuery] Image Rollover
Hi fellow members,
I have to accomplish the following for same page side navigation:
pseudo code:
nav 1 - mouseout image1, mouseover image2
click image, fn(view div) css display:block shows text on same page
if "click" show image 2 - if !click show image1
nav(n) the same as above
If click nav2 - nav(n) revert back to image1
I am not sure how to accomplish this. here is my code.
$(function() {
$("#fast").click(function(){view('hid1')}).mouseover(function()
{linkOver('fast')})
.mouseout(function(){ linkOut('fast')
});
});
linkOut(), linkOver() javascript to control the images
that is it, hope you can help,
Frank