I have 5 addons / extensions for FF, Chrome, IE, Opera and Safari.
I need the code to recognize the user browser and redirect (on click in an install button) to download the corresponding addon.
Can you please help?
|
I have 5 addons / extensions for FF, Chrome, IE, Opera and Safari. I need the code to recognize the user browser and redirect (on click in an install button) to download the corresponding addon. Can you please help? |
||||
|
|
Googling for browser reliable detection often results in checking the User agent string. This method is not reliable, because it's trivial to spoof this value. Only use the browser detection method if it's truly necessary, such as showing browser-specific instructions to install an extension. Use feature detection when possible. Demo: http://jsfiddle.net/9zxvE/238/
Analysis of reliabilityThe previous method depended on properties of the rendering engine (
Successfully tested in:
|
|||||||||||||||||||||
|
|
Quirksmode have a great script for this.... |
|||
|
|