javascript - To get the details of action performed on HTML element by jQuery -


i have page lot of html elements , want script captures action , on element performed.

  <script type="text/javascript">   $(document).ready(function() {    $('*').bind('click dblclick mousedown mouseenter mouseleave',                 detectevent);      function detectevent(e) {         alert(e.type);     }   });   </script> 

but script doesn't provide requirement.

check out visual event. give events attached on page loads of information them


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -