| Issue 313: | IE9 have problem with link focus | |
| 1 person starred this issue and may be notified of changes. | Back to list |
See _onClick function and resolve TODO:) In IE9 it doesn't work without setting focus(). But you have to test it if there is no problem.
Replace these lines (1.2.1 rc3: lines 1163-1165) in this function:
if(!$.browser.msie){
aTag[0].focus();
}
with these:
if(!($.browser.msie && parseInt($.browser.version),10) < 9){
aTag[0].focus();
}
May 23, 2012
(No comment was entered for this change.)
Status:
Accepted
Labels: Milestone-Release1.2.1
Dec 13, 2012
Usage of $.browser is depreceated and is hindering me from using a custom build jQuery atm. |
typo sorry, correct condition: if(!($.browser.msie && parseInt($.browser.version,10) < 9)){