<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/javascript/tags/browser</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 16 Oct 2008 03:15:09 GMT</pubDate>
<item>
<title>(JavaScript) PPK's Browser Detect - wizard04</title>
<link>http://snipplr.com/view/8354/ppks-browser-detect/</link>
<description><![CDATA[ <p>Modified just a bit. This version includes the Google Chrome beta.</p> ]]></description>
<pubDate>Thu, 11 Sep 2008 16:27:18 GMT</pubDate>
<guid>http://snipplr.com/view/8354/ppks-browser-detect/</guid>
</item>
<item>
<title>(JavaScript) Screen, Browser, and Window Dimensions - wizard04</title>
<link>http://snipplr.com/view/7899/screen-browser-and-window-dimensions/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 17 Aug 2008 20:29:49 GMT</pubDate>
<guid>http://snipplr.com/view/7899/screen-browser-and-window-dimensions/</guid>
</item>
<item>
<title>(JavaScript) IE sniffer using conditional compilation - cczona</title>
<link>http://snipplr.com/view/5564/ie-sniffer-using-conditional-compilation/</link>
<description><![CDATA[ <p>Note that the comment is part of the code here.   IE 5+ (including Mac) will evaluate to true by using conditional compilation.</p> ]]></description>
<pubDate>Tue, 25 Mar 2008 21:09:46 GMT</pubDate>
<guid>http://snipplr.com/view/5564/ie-sniffer-using-conditional-compilation/</guid>
</item>
<item>
<title>(JavaScript) Redirect a browser via JavaScript - smartalec</title>
<link>http://snipplr.com/view/4556/redirect-a-browser-via-javascript/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 14 Jan 2008 09:01:35 GMT</pubDate>
<guid>http://snipplr.com/view/4556/redirect-a-browser-via-javascript/</guid>
</item>
<item>
<title>(JavaScript) click on an element across browsers - noah</title>
<link>http://snipplr.com/view/3336/click-on-an-element-across-browsers/</link>
<description><![CDATA[ <p>If you have assigned an event handler to a container, you might want to remotely trigger it as if a child of the container had been clicked.  That is, you might want to manually set the target of the 'event' object that is passed to the event handler on the container.  This helps to keep the number of event handlers down.</p> ]]></description>
<pubDate>Fri, 20 Jul 2007 18:08:37 GMT</pubDate>
<guid>http://snipplr.com/view/3336/click-on-an-element-across-browsers/</guid>
</item>
<item>
<title>(JavaScript) Write to browser's error console - noah</title>
<link>http://snipplr.com/view/2870/write-to-browsers-error-console/</link>
<description><![CDATA[ <p>Display an error message in the browser's error console.  JavaScript 1.5 and up.</p> ]]></description>
<pubDate>Sat, 16 Jun 2007 18:13:00 GMT</pubDate>
<guid>http://snipplr.com/view/2870/write-to-browsers-error-console/</guid>
</item>
<item>
<title>(JavaScript) get and set cookie - noah</title>
<link>http://snipplr.com/view/2843/get-and-set-cookie/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 11 Jun 2007 09:10:48 GMT</pubDate>
<guid>http://snipplr.com/view/2843/get-and-set-cookie/</guid>
</item>
<item>
<title>(JavaScript) Ask browser for its modus (CSS1Compat, QuirksMode/BackCompat) - indianocean</title>
<link>http://snipplr.com/view/2800/ask-browser-for-its-modus-css1compat-quirksmodebackcompat/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 05 Jun 2007 06:21:13 GMT</pubDate>
<guid>http://snipplr.com/view/2800/ask-browser-for-its-modus-css1compat-quirksmodebackcompat/</guid>
</item>
<item>
<title>(JavaScript) Get and set state with cookie II - noah</title>
<link>http://snipplr.com/view/2688/get-and-set-state-with-cookie-ii/</link>
<description><![CDATA[ <p>Set and get a cookie.</p> ]]></description>
<pubDate>Tue, 22 May 2007 12:12:34 GMT</pubDate>
<guid>http://snipplr.com/view/2688/get-and-set-state-with-cookie-ii/</guid>
</item>
<item>
<title>(JavaScript) Ajax getHTTPObject function - 1man</title>
<link>http://snipplr.com/view/2300/ajax-gethttpobject-function/</link>
<description><![CDATA[ <p>This functions allows you to create a new XMLHTTPRequest, it checks to see if the browser supports each method, if not it returns false.</p> ]]></description>
<pubDate>Mon, 12 Mar 2007 05:37:54 GMT</pubDate>
<guid>http://snipplr.com/view/2300/ajax-gethttpobject-function/</guid>
</item>
<item>
<title>(JavaScript) browser detect - pablazo</title>
<link>http://snipplr.com/view/2154/browser-detect/</link>
<description><![CDATA[ <p>//The script

//Copy this script into your JavaScript files. It works immediately, and you can query three properties of the BrowserDetect object:

  //  * Browser name: BrowserDetect.browser
  //  * Browser version: BrowserDetect.version
  //  * OS name: BrowserDetect.OS</p> ]]></description>
<pubDate>Fri, 09 Feb 2007 06:10:00 GMT</pubDate>
<guid>http://snipplr.com/view/2154/browser-detect/</guid>
</item>
<item>
<title>(JavaScript) Dynamic Resolution Dependent Layoutout - aznprncritic</title>
<link>http://snipplr.com/view/2121/dynamic-resolution-dependent-layoutout/</link>
<description><![CDATA[ <p>A great script that will serve up stylesheets based on browser viewport size.</p> ]]></description>
<pubDate>Sun, 04 Feb 2007 19:21:32 GMT</pubDate>
<guid>http://snipplr.com/view/2121/dynamic-resolution-dependent-layoutout/</guid>
</item>
<item>
<title>(JavaScript) Browser Detect (from quirksmode) - jonhenshaw</title>
<link>http://snipplr.com/view/1395/browser-detect-from-quirksmode/</link>
<description><![CDATA[ <p>A useful but often overrated JavaScript function is the browser detect. Sometimes you want to give specific instructions or load a new page in case the viewer uses, for instance, Safari.

Copy this script into your JavaScript files. It works immediately, and you can query three properties of the BrowserDetect object:

    * Browser name: BrowserDetect.browser
    * Browser version: BrowserDetect.version
    * OS name: BrowserDetect.OS</p> ]]></description>
<pubDate>Thu, 12 Oct 2006 06:52:37 GMT</pubDate>
<guid>http://snipplr.com/view/1395/browser-detect-from-quirksmode/</guid>
</item>
<item>
<title>(JavaScript) Browser Checker - kif</title>
<link>http://snipplr.com/view/585/browser-checker/</link>
<description><![CDATA[ <p>Support: Fx2, Opera9, IE6
I don't have warrant of Safari's run and NN4.  However, I think that this code is perhaps safe.</p> ]]></description>
<pubDate>Wed, 26 Jul 2006 05:26:51 GMT</pubDate>
<guid>http://snipplr.com/view/585/browser-checker/</guid>
</item>
<item>
<title>(JavaScript) XMLHttpRequest - KernelPanic</title>
<link>http://snipplr.com/view/327/xmlhttprequest/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 10 Jul 2006 04:06:55 GMT</pubDate>
<guid>http://snipplr.com/view/327/xmlhttprequest/</guid>
</item>
<item>
<title>(JavaScript) Konqueror Browser OR KHTML Engine Detection - rolandog</title>
<link>http://snipplr.com/view/313/konqueror-browser-or-khtml-engine-detection/</link>
<description><![CDATA[ <p>This is a way to determine if the browser uses the KHTML engine or if it is the Konqueror Browser.</p> ]]></description>
<pubDate>Sun, 09 Jul 2006 14:07:07 GMT</pubDate>
<guid>http://snipplr.com/view/313/konqueror-browser-or-khtml-engine-detection/</guid>
</item>
<item>
<title>(JavaScript) Mouse Buttons on different Browsers - MyKey_</title>
<link>http://snipplr.com/view/275/mouse-buttons-on-different-browsers/</link>
<description><![CDATA[ <p>Deals with the fact that mouse buttons are referenced in different ways by different browsers.</p> ]]></description>
<pubDate>Sat, 08 Jul 2006 08:57:33 GMT</pubDate>
<guid>http://snipplr.com/view/275/mouse-buttons-on-different-browsers/</guid>
</item>
<item>
<title>(JavaScript) Browser Detection - MyKey_</title>
<link>http://snipplr.com/view/271/browser-detection/</link>
<description><![CDATA[ <p>Detects the browser and its version.</p> ]]></description>
<pubDate>Sat, 08 Jul 2006 07:28:30 GMT</pubDate>
<guid>http://snipplr.com/view/271/browser-detection/</guid>
</item>
<item>
<title>(JavaScript) Detect IE - tobinibot</title>
<link>http://snipplr.com/view/132/detect-ie/</link>
<description><![CDATA[ <p>Returns true if the browser is Internet Explorer, false otherwise.</p> ]]></description>
<pubDate>Fri, 30 Jun 2006 07:37:25 GMT</pubDate>
<guid>http://snipplr.com/view/132/detect-ie/</guid>
</item>
</channel>
</rss>