.delay(ms) not working
.delay(ms) not working
I'm trying to allow a tooltip to be hovered over for 700ms before it displays. I have the code:
onmouseover:function(editor,url) {
$('#lhinc_tip').delay(700).show();
},
onmouseleave:function(editor,url) {
$('#lhinc_tip').hide();
}
The tip shows immediately as soon as it's rolled over. Why doesn't the .delay(700) run?
Thanks.
Topic Participants
stva
jakecigar