Skip to content

Commit 2fa6ab4

Browse files
committed
trying different events in test
1 parent c22dbc7 commit 2fa6ab4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/tooltip/vertical_form.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,14 @@
3737
$(function(){
3838
$("input").tooltip({
3939
events: {
40-
input: "focus mouseover, blur mouseout"
40+
input: "focus mouseenter,blur mouseleave"
4141
}
42+
}).mouseleave(function(){
43+
console.log("input mouseleave");
44+
});
45+
46+
$(".tooltip").live('mouseleave', function(){
47+
console.log("tooltip mouseleave");
4248
});
4349
});
4450
</script>

0 commit comments

Comments
 (0)