Monday, 11 April 2016

Browser information Program in Jquery

<script>
document.write(navigator.userAgent+"<br>");
if(navigator.userAgent.indexOf("MSIE")==-1)
document.write("Other than IE browser");
else
document.write("IE browser");
</script>

No comments:

Post a Comment