Javascript : Get operating system and browser information
Problem :
You need to find out your visitor's browser and os version. How to do that with Javascript or Jquery?
Solution :
The existing Javascript solution floating around forums can be easily spoofed and some have not been updated for years. To detect the visitors' browser accurately, please use WhichBrowser. It can detect mobile based browsers as well.
Follow the guidelines on how to install WhichBrowser at Github ( https://github.com/WhichBrowser/WhichBrowser#how-to-use-it )
and after installations... to detect the visitors' browser :
Browsers.browser
// Chrome 27
and to detect the visitors' OS version.
Browsers.os
// Mac OS X 10.8.4
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.2k Golang : Function as an argument type example
+12.9k Swift : Convert (cast) Int or int32 value to CGFloat
+4.4k Javascript : How to show different content with noscript?
+8.8k Golang : Another camera capture GUI application with GTK and OpenCV
+10.8k Golang : Simple File Server
+8.3k Android Studio : Rating bar example
+5.9k Golang : ROT32768 (rotate by 0x80) UTF-8 strings example
+10k Golang : Translate language with language package example
+36.2k Golang : Smarter Error Handling with strings.Contains()
+8k Javascript : How to check a browser's Do Not Track status?
+6.9k Golang : Calculate pivot points for a cross
+13.7k Golang : Read XML elements data with xml.CharData example