Just stumbled upon an issue. When trying to detect IE 11 (the beta version currently on air) using Jquery, the result is \'firefox\'. The same code detect IE 10. I need to k
The final solution:
if (!!navigator.userAgent.match(/Trident\/7\./)) return "ie";
We can only hope that the release version will act the same.