SoFunction
Updated on 2025-04-03

JavaScript code examples to detect browsers used by users

Capability detection
The ability to detect a specific browser before writing code. For example, a script may have to detect the existence of a down payment for a function before calling it. This detection method frees developers from considering specific browser types and versions, allowing them to focus on whether the corresponding capabilities exist. Capability detection cannot accurately detect specific browsers and versions.

Quirk detection
Quirks are actually bugs in browser implementations. For example, there was a quirk in early webkits, that is, it would return hidden attributes in the for-in loop. Quirk detection usually involves running a piece of code and then determining if a browser has a quirk. Because quirk detection cannot accurately detect specific browsers and versions.

User Agent Detection
Identify the browser by detecting the user agent string. The user agent string contains a large amount of browser-related information, including browser, platform, operating system and browser version. User agent strings have a considerable development history. During this period, the browser provider view always adds some deceptive information to the user agent string, and deceives the website into detail its own browser is another browser. User agent detection requires special skills, especially be aware that Opera hides its user agent strings. Even so, the rendering engine used by the browser and the platform used by the mobile device and gaming system can still be detected through the user agent string.

During each HTTP request, the user agent string is sent as a response header, and the string can be accessed through Javascript properties. On the server side, it is a common and widely accepted practice to determine the browser used by detecting the user agent string. On the client side, user agent detection is generally regarded as a last resort, with priority following capability detection and quirk detection.

var client = function(){
 // Presentation engine var engine = {
  ie:0,
  gecko:0,
  webkit:0,
  khtml:0,
  opera:0,

  // Full version number  ver:null
 };

 // Browser var browser = {
  // Main browser  ie:0,
  firefox:0,
  safari:0,
  konq:0,
  opera:0,
  chrome:0,

  // Specific version number  ver:null
 };

 // Detect rendering engine and browser var ua = ;
 if () {
   =  = ();
   =  = parseFloat();
 } else if (/AppleWebKit\/(\S+)/.test(ua)) {
   = RegExp["$1"];
   = parseFloat();

  // Make sure it's Chrome or Safari  if (/Chrome\/(\S+)/.test(ua)) {
    = RegExp["$1"];
    = parseFloat();
  } else if (/Version\/(S+)/.test(ua)) {
    = RegExp["$1"];
    = parseFloat();
  } else {

   // Approximately determine the version number   var safariVersion = 1;
   if ( <100) {
    safariVersion = 1;
   } else if ( < 312) {
    safariVersion = 1.2;
   } else if ( < 412) {
    safariVersion = 1.3;
   } else {
    safariVersion = 2;
   }

    =  = safariVersion;
  }
 } else if (/KHTML\/(S+)/.test(ua) || /Konqueror\/([^;]+)/.test(ua)) {
   =  = RegExp["$1"];
   =  = parseFloat();
 } else if (/rv:([^\)]+)\) Gecko\/\d{8}/.test(ua)){
   = RegExp["$1"];
   = parseFloat();

  // Determine if it is firefox  if (/Firefox\/(S+)/.test(ua)) {
    = RegExp["$1"];
    = parseFloat();
  }
 } else if (/MSIE ([^;]+)/.test(ua)) {
   =  = RegExp["$1"];
   =  = parseFloat();

 }

 // Detect the browser  = ;
  = ;

 // Return these objects return {
  engine:engine,
  browser: browser
 }
}();

();
();

Tangram detects browser source code

/**
  * Declare baidu package
  */
var baidu = baidu || {version: "1-3-2"}; // meizz 20100513 Upgrade guid to \x06 = "$BAIDU$";//Propose guid to prevent modification of window[undefined] 20100504 berg
/**
  * meizz 2010/02/04
  * Top-level domain baidu may be hijacked by closures, and the following object is required when unique information at the page level is required.
  */

window[] = window[] || {};

/**
  * Statement package
  */
 =  || {};

/**
  * Determine whether it isGecko
  */
 = /gecko/() && !/like gecko/();

/**
  * Determine whether it is Webkit
  */
 = /webkit/();

/**
  * Determine whether it is a standard mode
  */
 =  == "CSS1Compat";

/**
  * Determine whether it is a safari browser
  */
if ((/(\d+\.\d)(\.\d)?\s+safari/() && !/chrome/())) {
  = parseFloat(RegExp['\x241']);
}

/**
  * Determine whether it is an opera browser
  */
if (/opera\/(\d+\.\d)/()) {
  = parseFloat(RegExp['\x241']);
}

/**
  * Determine whether it is a chrome browser
  */
if (/chrome\/(\d+\.\d)/()) {
  = parseFloat(RegExp['\x241']);
}

/**
  * Determine whether it is an ie browser
  */
if (/msie (\d+\.\d)/()) {
  =  =  || parseFloat(RegExp['\x241']);
}

/**
  * Determine whether it is a firefox browser
  */
if (/firefox\/(\d+\.\d)/()) {
  = parseFloat(RegExp['\x241']);
 // '\x241' is the octal notation '\x24' corresponding character '$' , so '\x241' is equivalent to '$1'}