I can't seem to get the currently focused/active element as a jQuery object in Firefox, if it is an <input type="file" />. It works on other input types (text, password, submit, others) and on other element types (<select>, <textarea>, others).
HTML
<input type="file" />
Javascript
// Cannot find input type file elements with :focus,
// $focused.length is always 0 in Firefox (tested using FF 10.0.1)
var $focusedTest1 = $(':focus');
// This line throws for Firefox (tested using FF 10.0.1)
// Permission denied to access property 'nodeType'
// @ http://code.jquery.com/jquery-1.7.1.js:108
// in jQuery.fn.init, below "Handle $(DOMElement)"
var $focusedTest2 = $(document.activeElement);
Steps to reproduce
- Use Firefox.
- Focus the file box:
- press tab until you reach it
- or click in it.
- While focusing the file box, try to get a result from
$(':focus').
See jsFiddle demonstration of getting the id of the focused element - test it with Firefox.
Does anyone have a solution for getting the focused/active element as a jQuery object that works for <input type="file" />?
The solution needs to be fully generic as the functionality is part of a plugin. I will not have control over the page the script will run on.