This issue has been fixed by Vasil Dinkov:
http://www.smartmenus.org/forum/viewtopic.php?pid=2850#p2850
I have to add a js code after jquery:
---------------------
(function($){
$(function(){
var getPointerBackup;
var disableGetPointer = function() {
return {x:-1000, y:-1000};
}
$('#Menu1').parent().mouseenter(function(){
getPointerBackup = jQuery.iUtil.getPointer;
jQuery.iUtil.getPointer = disableGetPointer;
}).mouseleave(function(){
jQuery.iUtil.getPointer = getPointerBackup;
});
});
})(jQuery);
---------------------
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---