- Browser sniffing
Browser sniffing is a common technique used in
website s andweb application s in order to determine theweb browser a visitor is using, and to serve browser-appropriate content to the visitor. This controversial practice is sometimes necessary because of incompatibilities between browsers in areas such as the interpretation ofHTML ,cascading style sheets (CSS) and theDocument Object Model (DOM). While theWorld Wide Web Consortium maintains up-to-date central versions of some of the most important Web standards in the form of recommendations, in practice no software developer has designed a browser which adheres exactly to these standards; implementation of other standards and protocols, such as SVG andXMLHttpRequest , varies as well. As a result, different browsers will display the same page differently, and so methods have been developed to detect what web browser a user is working with so as to ensure consistent display of content.niffer Methods
Client-side sniffing
Web pages can use
programming language s such asJavascript which are interpreted by theuser agent , with results sent to theweb server . For example, here is a piece of code that might be used to determine whether a user is viewing a web page withInternet Explorer :This
code is run by the client computer, and the results are used by other code to make necessary adjustments on client-side. In this example, the client computer is asked to determine whether the browser can use a feature calledActiveX . Since this feature is to Microsoft, Inc., a positive result will indicate that the client is running Microsoft's "Internet Explorer".erver-side sniffing
Client-side sniffing makes use of features on the client computer. These features must be available and active in order for the process to work. However, since the web server has no control over whether the client actually has the features available, client-side sniffing is unreliable. It is possible, however, to determine many features of the browser without depending on the client configuration. The web server communicates with the client using a communication protocol known as
HTTP , or Hypertext Transfer Protocol. Information communicated between client and server usually includes information about the browser being used to view theweb site . Seeuser agent for more details on this.Use
Browser sniffing can produce information on different aspects of the browser used. For example, it can detect which type of browser is being used (e.g.,
Internet Explorer ,Netscape Navigator ,Mozilla Firefox , Opera, Apple Safari) and which version of thesoftware the client computer is running. Based on this information, the web server can provide aweb page which will be structured appropriately for theuser agent . Since browsers can vary significantly in their interpretation of a page, this can be an important consideration forweb designer s; consequently, there are a large number of scripts for browser sniffing available on the Internet and even commercial solutions such as BrowserObject or BrowserHawk.Issues and standards
Browser sniffing has become a controversial practice in light of increasingly common use of alternative browsers such as
Mozilla Firefox and Opera. Many websites use browser sniffing to determine whether a visitor's browser is unable to use certain features (such asJavascript ,DHTML ,ActiveX , orcascading style sheets ), and display an error page if a certain browser is not used. However, it is virtually impossible to account for the tremendous variety of browsers available to users. Generally, a web designer using browser sniffing to determine what kind of page to present will test for the three or four most popular browsers, and provide content tailored to each of these. If a user is employing auser agent not tested for, there is no guarantee that a usable page will be served; thus, the user may be forced either to change browsers or to avoid the page. For this reason theWorld Wide Web Consortium , which sets the standards to be used in presentation of web pages, recommends that web sites be designed in accordance with its standards, and be arranged to "fail gracefully" when presented to a browser which cannot deal with a particular standardFact|date=October 2008.ee also
*
Web browser
*Document Object Model
*Computer Programming
*HTTP
Wikimedia Foundation. 2010.