We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c22dbc7 commit 2fa6ab4Copy full SHA for 2fa6ab4
test/tooltip/vertical_form.html
@@ -37,8 +37,14 @@
37
$(function(){
38
$("input").tooltip({
39
events: {
40
- input: "focus mouseover, blur mouseout"
+ input: "focus mouseenter,blur mouseleave"
41
}
42
+ }).mouseleave(function(){
43
+ console.log("input mouseleave");
44
+ });
45
+
46
+ $(".tooltip").live('mouseleave', function(){
47
+ console.log("tooltip mouseleave");
48
});
49
50
</script>
0 commit comments