In this article I will show you how can you find a client’s browser name. You can detect the browser using the JavaScript properties navigation.appName and navigation.UserAgent. The userAgent property is suitable than the navigation.appName, because some types of browser internet browser may return the value “Netscape”. So you can check web browser using the following code.
<script type="text/javascript">
if (navigator.userAgent.indexOf("Chrome") != -1){
alert('Chrome');
}
else if ((navigator.userAgent.indexOf("Opera") ||navigator.userAgent.indexOf('OPR')) != -1) {
alert('Opera');
}
else if (navigator.userAgent.indexOf("Safari") != -1){
alert('Safari');
}
else if (navigator.userAgent.indexOf("Firefox") != -1){
alert('Firefox');
}
else if ((navigator.userAgent.indexOf("MSIE") != -1)|| (!!document.documentMode == true)) //If above IE 10
{
alert('Internet Explorer');
}
else {
alert('unknown browser');
} </script>
Post your comments / questions
Recent Article
- How to check PAN-Aadhaar is Linked or NOT?
- How to customize pagination for django admin?
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
Related Article