As I am writing an plugin for websites which uses jQuery I am wondering, why some of the sites which are using the script get the error:
Uncaught TypeError: Object #<Object> has no method 'mouseenter'
The code:
plugin.setBehavior = function() {
jQuery('#divname').mouseenter(function() {
show();
});
}
Are there any versions of jQuery without the mouseenter event or what could be the reason for the failure?
Thx
try this:
also
liveordelegateifbindwon’t work