events - How to disable javascript code from a javascript module? -


i have joomla module javascript listener, waiting mouse hover area. want disable listener, can in firebug clicking disable code option, want more permanent javascripty approach. code minimized , it's hard read, can code firebug, is:

(function (a){a=new domevent(a,j.getwindow());i.call(j,a)===false&&a.stop()}) 

is there javascript code can disable line of code? thank you.

if have jquery try

jquery('yourelement').off('hover mouseover');  

or

jquery('document').on('hover mouseover', '#yourlement', function(event){event.preventdefault();return false;}) 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -