We can use navigator.appName property, to identify the browser we are using .For Netscape browsers, the value of navigator.appName is ‘Netscape’. For Microsoft Internet Explorer browsers,the value of navigator.appName is ‘Microsoft Internet Explorer’ .
The following code is used for browser detection.
function BrowserDetect()
{
document.write(’navigator.appName = ’+navigator.appName+’
’)
document.write(’navigator.userAgent = ’+navigator.userAgent+’
’)
if ((navigator.userAgent).indexOf('Opera')!=-1)
{
document.write('You are using an Opera browser.')
}
else if (navigator.appName=='Netscape')
{
document.write('You are using a Netscape browser.')
}
else if ((navigator.appName).indexOf('Microsoft')!=-1)
{
document.write('You are using Microsoft Internet Explorer.')
}
}
Share with