/ Published in: JavaScript
Returns true if the browser is Internet Explorer, false otherwise.
Expand |
Embed | Plain Text
function isIE() { return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent); }
You need to login to post a comment.
