jquery event capture
I cannot find a way to make sure the function is complete before checking for an event
<script type="text/javascript">
jQuery(document).ready( function() {
var c开发者_StackOverflow中文版esc = new flickrshow('flickrbox', {
'autoplay':true,
'hide_buttons':false,
'interval':3500,
'page':1,
'per_page':10,
'user':'53335537@N04' });
jQuery('li').hover(function(){ console.log (jQuery(this)); });
});
</script>
this script run on : http://www.notrepanorama.com/
the box is created, then populated with images and if i hover on the images, the
any solution to that ?
jQuery('li').bind('mouseover',function(){
// code for mouser over
}).bind('mouseout',function (){
// code for mouse out
});
whatever i understood from your question(which is unclear), this is my solution.
精彩评论