I am using jQuery lightbox for show a gallery in my webpage it works fine but is I need the images popup when the mouse over on it I tried using below code but it does not works how to achieve it?
<script type="text/javascript">
jQuery(document).mouseover(function(){
jQuery('#gallery a').lightBox();
});
</script>
You can see the javascript statement as return this.unbind(‘click’).click(_initialize);
in jquery.lightbox-0.x.js (0.x means version of lightbox). Change this line as bellow
return this.unbind(‘mouseover’).mouseover(_initialize);