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
- Import "django.shortcuts" could not be resolved from source in Django Project
- How to add two numbers in Android Studio? | Source Code
- FindViewByID returns null in android studio -SOLVED
- Saving changes is not permitted in SQL SERVER - [SOLVED]
- Restore of database failed. File cannot be restored over the existing. -[SOLVED]
- One or more projects in the solution were not loaded correctly in Visual Studio 2019 | FIXED
- How to find Laptop's Battery Health?
- SOLVED-Related Field got invalid lookup: icontains error in Django
Related Article