How to bind browser event?
Hi everybody, i need to know how i can bind browser event for:
- Don't show previous insert when i click two times inside input box;
- Don't show title when i place mouse over input box.
I successfully bind context menu with:
- $(document).bind("contextmenu",function(e){
return false;
});
Browser: Firefox 3.5
Thanks a lot!