API Documentation: visitor.browser

Web Browser

The browser property holds information on the visitor's web browser and installed plugins.

visitor.browser.engine
  • Gets the name of the browser's rendering engine.
  • Data Type: String
  • Default Value: '' (if the engine could not be identified)
  • Possible Values: 'Gecko', 'Webkit', 'IE', 'Opera', 'KHTML', 'NetFront', ''
visitor.browser.name
  • Gets the display name of the browser used by the visitor.
  • Data Type: String
  • Default Value: '' (if the browser could not be identified)
  • Example Values: 'Firefox', 'Opera Mini', 'Chrome', 'Sleipnir'
visitor.browser.versionMajor
  • Gets the browser's major version number.
  • Data Type: Integer
  • Default Value: 0 (if no version could be identified)
  • Example Value: 3 for Firefox 3.6.22
visitor.browser.versionMinor
  • Gets the browser's minor version number (the number after the dot).
  • Data Type: Integer
  • Default Value: 0 (if no minor version could be identified)
  • Example Value: 6 for Firefox 3.6.22
visitor.browser.plugins.flash.enabled
  • Gets a boolean value that indicates whether the Flash plugin is enabled/available in the browser.
  • Data Type: Boolean
  • Possible Values: true (Flash is available), false (Flash is not available)
visitor.browser.plugins.flash.versionMajor
  • Gets the Flash plugin's major version number.
  • Data Type: Integer
  • Default Value: 0 (if Flash is not available or no version could be identified)
  • Example Value: 10 for Flash 10.3.183.7
visitor.browser.plugins.flash.versionMinor
  • Gets the Flash plugin's minor version number (the number after the first dot).
  • Data Type: Integer
  • Default Value: 0 (if Flash is not available or no version could be identified)
  • Example Value: 3 for Flash 10.3.183.7
visitor.browser.plugins.flash.versionRevision
  • Gets the Flash plugin's revision number (the number after the second dot).
  • Data Type: Integer
  • Default Value: 0 (if Flash is not available or no version could be identified)
  • Example Value: 183 for Flash 10.3.183.7
visitor.browser.plugins.silverlight.enabled
  • Gets a boolean value that indicates whether the Silverlight plugin is enabled/available in the browser.
  • Data Type: Boolean
  • Possible Values: true (Silverlight is available), false (Silverlight is not available)
visitor.browser.plugins.silverlight.versionMajor
  • Gets the Silverlight plugin's major version number.
  • Data Type: Integer
  • Default Value: 0 (if Silverlight is disabled or no version could be identified)
  • Example Value: 4 for Silverlight 4.0.60531.0
visitor.browser.plugins.silverlight.versionMinor
  • Gets the Silverlight plugin's minor version number (the number after the dot).
  • Data Type: Integer
  • Default Value: 0 (if Silverlight is disabled or no version could be identified)
  • Example Value: 0 for Silverlight 4.0.60531.0
visitor.browser.plugins.java.enabled
  • Gets a value that indicates whether Java support is enabled/available in the browser.
  • Data Type: Boolean
  • Possible Values: true (Java is available), false (Java is not available)