2
It is only possible with Javascript and HTML to make one appear alert
only and only when the user is browsing through Internet Explorer?
For example when browsing Google Chrome alert
does not appear, but when browsing Internet Explorer
2
It is only possible with Javascript and HTML to make one appear alert
only and only when the user is browsing through Internet Explorer?
For example when browsing Google Chrome alert
does not appear, but when browsing Internet Explorer
2
It is possible to get browser properties:
function identificarBrowse() {
var nav = navigator.userAgent.toLowerCase();
if (nav.indexOf("msie") != -1) {
alert("IE");
}
}
The way to identify IE11 has been changed, I used Joachim’s solution:
Browser other questions tagged javascript internet-explorer
You are not signed in. Login or sign up in order to post.
The Explorer is not a browser. I edited your question and changed "Explorer" to "Internet Explorer".
– Jéf Bueno