Post date: Apr 6, 2015 2:24:45 PM
Debugging javascript can be a tedious task and one of the things you don't want to do is use ridiculously long addressing schemes to find just the right element.
With this simple bookmarklet you can just hover your mouse over some element and access it's properties by calling the el or window.el global in your debugging tool/element inspector.
javascript:document.onmousemove=function(e){el=e.target}