Issue 313: IE9 have problem with link focus
Status:  Fixed
Owner: ----
Closed:  Jun 2012
Reported by dominik.fiser, May 22, 2012
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 22, 2012
#1 dominik.fiser
typo sorry, correct condition: if(!($.browser.msie && parseInt($.browser.version,10) < 9)){
May 23, 2012
Project Member #2 moo...@wwwendt.de
(No comment was entered for this change.)
Status: Accepted
Labels: Milestone-Release1.2.1
Jun 6, 2012
Project Member #3 moo...@wwwendt.de
This issue was closed by revision r598.
Status: Fixed
Dec 13, 2012
#4 fabian.l...@cf-dev.de
Usage of $.browser is depreceated and is hindering me from using a custom build jQuery atm.