Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sashagoebbels/2a35df6feff17ae2b6339c81afb6b030 to your computer and use it in GitHub Desktop.
Save sashagoebbels/2a35df6feff17ae2b6339c81afb6b030 to your computer and use it in GitHub Desktop.
Visual Event is an open source Javascript bookmarklet which provides debugging information about events that have been attached to DOM elements. Visual Event shows: Which elements have events attached to them. The type of events attached to an element. The code that will be run with the event is triggered. The source file and line number for whe…
javascript:(function()%20{var%20protocol%20=%20window.location.protocol%20===%20'file:'%20?'http:'%20:%20'';var%20url%20=%20protocol+'//www.sprymedia.co.uk/VisualEvent/VisualEvent_Loader.js';if(%20typeof%20VisualEvent!='undefined'%20)%20{if%20(%20VisualEvent.instance%20!==%20null%20)%20{VisualEvent.close();}else%20{new%20VisualEvent();}}else%20{var%20n=document.createElement('script');n.setAttribute('language','JavaScript');n.setAttribute('src',url+'?rand='+new%20Date().getTime());document.body.appendChild(n);}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment