Active Element Favlet
Jump to navigation
Jump to search
Sometimes there is no visible keyboard focus on an element and you want to know what element has keyboard focus. This Favlet will display the outer HTML code of the active element. If frames are used this will show the current frame -- the Favlet could be updated to drill down through the frames to the active element of the current frame.
(See Install a Favlet for instructions on how to add this Favlet to your browser).
Display the active element's outer HTML code Favlet
Sample code:
javascript:unction activeElement(element) {
if (element.tagName == 'IFRAME') { activeElement(element.contentWindow.document.activeElement); }
else { alert(element.outerHTML); }
} (function() { activeElement(document.activeElement); })();