Is IE? Shortest JavaScript code to find whether the browser is Internet Explorer.
Posted by Sunil | Filed under Web Development
There are a lot of JavaScript codes to find whether the user browser is Internet Explorer. But here is the shortest code to check whether the browser is Internet Explorer. if(‘\v’==’v’) It will return true if you are using Internet Explorer. So we can write the code like this. if(“\v”==”v”){ alert(“This browser is Internet Explorer”); [...]
Tags: IE, Internet Explorer, Javascript, web development tool











