Last Updated: February 25, 2016
·
941
· mbeute

TYPO3 Condition for IE11 and higher

Since Microsoft changed its user-agent string for IE11, in TYPO3 the condition
[browser = msie] && [version = 11]
doesn't work anymore. You'll have to add the condition for the useragent.

The following example will work for all IEs higher V.9 OR the useragent Trident/7.0 with any revision token...

[browser = msie] && [version => 9] || [useragent = *Trident/7.0; rv:*]
    ....
[end]

See documentation on Micorsofts Developer Network Site