jquery 1.4 how to give pause / delay to this line ?
how to give pause / delay to this animation ?
- $(document).ready(function(){
- $('.boxgrid.caption').hover(function(){
- $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
- }, function() {
- $(".cover", this).stop().animate({top:'100px'},{queue:false,duration:300});
- });
- });
this is a slide up and down animation and I need a delay before the slide down of that line
thanks