I want to detect the browser version when I load my page. i.e
If a user is using Internet Explorer 8 or Lower version an alert should appear.
How can I manage this using Javascript or Jquery ?
I want to detect the browser version when I load my page. i.e
If a user is using Internet Explorer 8 or Lower version an alert should appear.
How can I manage this using Javascript or Jquery ?
To display a message to site visitors using IE8 and below, you should use a conditional comment:
<!--[if lte IE 8]>
Almost any HTML can go here, just not comments
<script>
alert("You're using an outdated browser!");
</script>
<h1>You're using an outdated browser!</h1>
<![endif]-->