<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>fragmente &#187; jquery</title>
	<atom:link href="http://blog.team-noir.net/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.team-noir.net</link>
	<description>team noir blog</description>
	<lastBuildDate>Tue, 24 Aug 2010 15:39:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery badBrowser Update Version 1.4</title>
		<link>http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/</link>
		<comments>http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/#comments</comments>
		<pubDate>Tue, 18 May 2010 16:22:19 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[badbrowser]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=365</guid>
		<description><![CDATA[Time is running &#8230;
Hello!
Today you can download my new version from &#8220;jQuery badBrowser Script&#8221; . Why and how it works you can read in my last articles:

fight-old-browsers-warning-with-jquery
release-bad-browser-new-version-13
fight-internet-explorer-6-reloaded

After several comments to the missing MSIE 5.5 detecting i decided to update my script and tell you my solution:
I have tested several ways to use JavaCcript/jQuery and useragent [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
<li><a href='http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/' rel='bookmark' title='Permanent Link: Release: bad Browser &#8211; new Version 1.3'>Release: bad Browser &#8211; new Version 1.3</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Time is running &#8230;</p>
<p>Hello!</p>
<p>Today you can download my new version from &#8220;<strong>jQuery badBrowser Script</strong>&#8221; . Why and how it works you can read in my last articles:<span id="more-365"></span></p>
<ul>
<li><a href="http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/">fight-old-browsers-warning-with-jquery</a></li>
<li><a href="http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/">release-bad-browser-new-version-13</a></li>
<li><a href="http://blog.team-noir.net/2009/08/fight-internet-explorer-6-reloaded/">fight-internet-explorer-6-reloaded</a></li>
</ul>
<p>After several comments to the missing MSIE 5.5 detecting i decided to update my script and tell you my solution:</p>
<p>I have tested several ways to use JavaCcript/jQuery and <em>useragent</em> identification.</p>
<pre>// special Testcheck for dirty Microsoft Internet Explorer 5.5
 if (userAgent.indexOf("MSIE 5.")&gt;=0) {
 return true;
 }</pre>
<p>Nothing happens.  Mostly the Browser doesn&#8217;t work with JavaScript or displays many errors.<br />
MSIE 5.5 is very old and in my opinion it&#8217;s <strong>enough to detect IE 6.0</strong>. In special cases you may use <a title="german wikipedia" href="http://de.wikipedia.org/wiki/Conditional_Comments">conditional comments</a> like this:</p>
<pre>&lt;head&gt;
 &lt;!--[if lte IE 5]&gt;
 &lt;style&gt; body {background:yellow;}&lt;/style&gt;
 &lt;![endif]--&gt;
&lt;/head&gt;</pre>
<p>The actually jQuery library is 1.4.2, since version 1.3 the <em>jquery.browser</em> command is deprecated, but on the <a href="http://api.jquery.com/jQuery.browser/">website</a> you can read:</p>
<blockquote><p>The <code>$.browser</code> property is deprecated in jQuery 1.3, but there are no immediate plans to remove it.</p></blockquote>
<p><strong><span style="text-decoration: underline;">My small Changelog</span></strong>:</p>
<ul>
<li><em>update the browser version support, alert if smaller then:</em>
<ul>
<li><em>Firefox &lt; 3 .0<br />
</em></li>
<li><em>Opera &lt; 9.5</em></li>
<li><em>Safari &lt; 4.0</em></li>
<li><em>Google Chrome &lt; 3.0</em></li>
<li><em>MSIE &lt; 8.0</em></li>
</ul>
</li>
<li><em>German warning language<br />
</em><br />
<em><br />
</em></li>
</ul>
<p>Please comment this Post for hints, tricks and more &#8230; have fun!</p>
<a href="http://blog.team-noir.net/wp-content/plugins/download-monitor/download.php?id=2" title="1.4"><img src="http://blog.team-noir.net/wp-content/uploads/download.png" title="Download badBrowser Version 1.4" /></a> <a href="http://blog.team-noir.net/wp-content/plugins/download-monitor/download.php?id=2" title="1.4">badBrowser Version 1.4</a>  ( 172x )
<p><span style="text-decoration: underline;"><strong>UPDATE 19.05.2010:</strong></span> Now you can also find a minimized .js Version in the download-zip (Thanks to fleshgrinder). Nice javascript <a href="http://yui.2clics.net/">compression tool</a>.</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
<li><a href='http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/' rel='bookmark' title='Permanent Link: Release: bad Browser &#8211; new Version 1.3'>Release: bad Browser &#8211; new Version 1.3</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to code a jQuery slider menu</title>
		<link>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/</link>
		<comments>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 13:25:54 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[YAML]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=339</guid>
		<description><![CDATA[How to &#8230;
I show you a nice jQuery snippet for a smoothy slider menu.
This was my first jQuery experience &#8211; if you find some tuning options, tell me please!
Here you can see my script in Action: http://www.gyn-endoskopie.de/

/**
 * @author team noir GbR
 * simple slide-out Menu
 * www.gyn-endoskopie.de
 * Version 1.5 - 11.01.2010
 */
$(document).ready(function() {
 [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='Permanent Link: How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/' rel='bookmark' title='Permanent Link: How to build a YAML fullscreen layout'>How to build a YAML fullscreen layout</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='Permanent Link: How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>I show you a nice jQuery snippet for a smoothy slider menu.</p>
<p>This was my first <a href="http://jquery.com/">jQuery</a> experience &#8211; if you find some tuning options, tell me please!</p>
<p>Here you can see my script in Action: <a title="Dr med Söder" href="http://www.gyn-endoskopie.de/">http://www.gyn-endoskopie.de/</a></p>
<p><span id="more-339"></span></p>
<pre>/**
 * @author team noir GbR
 * simple slide-out Menu
 * www.gyn-endoskopie.de
 * Version 1.5 - 11.01.2010
 */
$(document).ready(function() {
 //on first loading, hide the submenu
 $(".subul li").hide();
 //show active sub element, after paging
 $(".active").parent().parent(".subul").css('margin-top', -4).children("li").show(".subul li");

 //Actionhandling
 //click on menu
 $(".slide").click(function(){

 //only one submenu is allowed to show
 $(".angeklickt li").slideUp("fast");
 $(".angeklickt").removeClass("angeklickt");
 //close other open submenus
 $(".active").parent().parent(".subul").children("li").slideUp(".subul li");

 //mark heading ul
 $(this).next("ul").addClass('angeklickt');

 //show marked submenu
 if ($(".angeklickt li").is(":hidden")) {
 $(".angeklickt li").slideDown("slow");
 $("ul.angeklickt").css('margin-top', -4);
 return false;
 }
 //close/slide submenu
 else {
 $(".angeklickt li").slideUp("slow");
 $("ul.angeklickt").css('margin-top', 0);
 $(this).next("ul").removeClass("angeklickt");
 return false;
 }
 });

});
</pre>
<p>this is the menu source code:</p>
<pre>&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#"&gt;Startseite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#"&gt;Zur Person&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#l"&gt;Operationen&lt;/a&gt;
 &lt;ul class="subul&gt;
   &lt;li&gt;&lt;a href="#" title="Operationsspektrum"&gt;Operationsspektrum&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="OP-Aufklärung"&gt;OP-Aufklärung&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="OP-Patienteninfos"&gt;OP-Patienteninfos&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Anmeldung"&gt;Anmeldung&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="#" title="Novasure/Goldnetz"&gt;Novasure/Goldnetz&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="#" title="Tagesklinik"&gt;Tagesklinik&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#"&gt;Kontakt&lt;/a&gt;
 &lt;ul class="subul&gt;
   &lt;li&gt;&lt;a href="#" title="Schreiben Sie uns"&gt;Schreiben Sie uns&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Anfahrt mit dem Auto"&gt;Anfahrt mit dem Auto&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href="#" title="Wegbeschreibung"&gt;Wegbeschreibung&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>System information:</p>
<ul>
<li>TYPO3 4 CMS</li>
<li>YAML 3.1</li>
<li>CSS 2/3</li>
<li>XHTML 1.0</li>
<li><a title="Dr med Söder" href="http://www.gyn-endoskopie.de/">http://www.gyn-endoskopie.de/</a></li>
</ul>
<p><a href="http://blog.team-noir.net/wp-content/uploads/2010/03/slider_menu.png"><img class="alignnone size-full wp-image-347" title="slider_menu" src="http://blog.team-noir.net/wp-content/uploads/2010/03/slider_menu.png" alt="" width="214" height="357" /></a></p>
<p>greetz!</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2010/05/how-to-use-position-absolute-and-z-index-with-internet-explorer-7-and-nested-containers/' rel='bookmark' title='Permanent Link: How to use position-absolute and z-index with Internet Explorer 7 and nested containers'>How to use position-absolute and z-index with Internet Explorer 7 and nested containers</a></li>
<li><a href='http://blog.team-noir.net/2010/03/how-to-build-a-yaml-fullscreen-layout/' rel='bookmark' title='Permanent Link: How to build a YAML fullscreen layout'>How to build a YAML fullscreen layout</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-center-a-yaml-layout/' rel='bookmark' title='Permanent Link: How to &#8230; center a YAML Layout'>How to &#8230; center a YAML Layout</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/03/how-to-code-a-jquery-slider-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release: bad Browser &#8211; new Version 1.3</title>
		<link>http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/</link>
		<comments>http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 17:20:45 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[badbrowser]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[popup]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=203</guid>
		<description><![CDATA[Release
Hi there &#8230;
today we finished the tests for our updated badBrowser version. More information about our ideas and sources for this script you will find here.

Changelog:

Google Chrome detect, warning &#60; version 2.0
new Safari detecting mode

The userAgent from Safari and Chrome are very similar because both of them use webkit. So detecting is more difficult but works [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='Permanent Link: jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
<li><a href='http://blog.team-noir.net/2010/06/typo3-440-released/' rel='bookmark' title='Permanent Link: TYPO3 Version 4.4.0 released'>TYPO3 Version 4.4.0 released</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Release</strong></p>
<p>Hi there &#8230;</p>
<p>today we finished the tests for our updated badBrowser version. More information about our ideas and sources for this script you will find <a title="fight old Browser" href="http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/">here</a>.</p>
<p><span id="more-203"></span></p>
<p><em>Changelog:</em></p>
<ul>
<li><em>Google Chrome detect, warning &lt; version 2.0</em></li>
<li><em>new Safari detecting mode</em></li>
</ul>
<p>The userAgent from <a href="http://www.apple.com/en/safari/">Safari</a> and <a title="Google Chrome" href="http://www.google.com/chrome/">Chrome</a> are very similar because both of them use <a href="http://webkit.org/">webkit</a>. So detecting is more difficult but works fine now in version 1.3</p>
<p>Thanks to chobo2 and fleshgrinder</p>
<p>Have fun and tell us your thoughts</p>
<p><strong>NEW VERSION: 1.4</strong><br />
<a href="http://blog.team-noir.net/wp-content/plugins/download-monitor/download.php?id=2" title="1.4"><img src="http://blog.team-noir.net/wp-content/uploads/download.png" title="Download badBrowser Version 1.4" /></a> <a href="http://blog.team-noir.net/wp-content/plugins/download-monitor/download.php?id=2" title="1.4">badBrowser Version 1.4</a>  ( 172x )</p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='Permanent Link: jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; Warning with jQuery'>Fight old Browsers &#8211; Warning with jQuery</a></li>
<li><a href='http://blog.team-noir.net/2010/06/typo3-440-released/' rel='bookmark' title='Permanent Link: TYPO3 Version 4.4.0 released'>TYPO3 Version 4.4.0 released</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Fight old Browsers &#8211; Warning with jQuery</title>
		<link>http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/</link>
		<comments>http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 17:45:37 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[internet explorer 6]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[old browser]]></category>
		<category><![CDATA[popup]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=137</guid>
		<description><![CDATA[Block the Internet Explorer 6 and other old browsers with a small Warning-div
Hi there,
in the last days we relaunched our website (www.team-noir.net). We used the CSS Framework YAML and create a small website (6 pages). But i spent 4 hours just for bugfixing the  fxxxx Internet Explorer 6.0 and 5.5
They don&#8217;t know variables heights or [...]


Related posts:<ol><li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='Permanent Link: jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
<li><a href='http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/' rel='bookmark' title='Permanent Link: Release: bad Browser &#8211; new Version 1.3'>Release: bad Browser &#8211; new Version 1.3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h4>Block the Internet Explorer 6 and other old browsers with a small Warning-div</h4>
<p>Hi there,</p>
<p>in the last days we relaunched our website (<a title="new design" href="http://www.team-noir.net">www.team-noir.net</a>). We used the CSS Framework <a title="thanks!" href="http://www.yaml.de">YAML </a>and create a small website (6 pages). But i spent <strong>4 hours</strong> just for bugfixing the <span style="text-decoration: line-through;"> fxxxx</span> Internet Explorer 6.0 and 5.5</p>
<p>They don&#8217;t know variables heights or transparent png&#8217;s &#8230; certainly you know this!</p>
<p>I was so angry about loosing this time for old, silly and unsecure browers &#8230; <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-137"></span></p>
<p>So we decided to implement a small but important WARNING to all users with old browsers. I found a very nice script on <a href="http://think2loud.com/build-an-unsupported-browser-warning-with-jquery/">think2loud.com</a></p>
<p>I just extended the browser-detection, you will find the hole skript &gt;&gt;<a title="download from think2loud" href="http://www.think2loud.com/examples/badbrowser.zip">here</a>&lt;&lt;:</p>
<pre>function badBrowser(){
if($.browser.msie &amp;&amp; parseInt($.browser.version) &lt;= 6){ return true;}
if($.browser.opera &amp;&amp; parseInt($.browser.version) &lt;= 9) { return true;}
if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){
var ffversion=new Number(RegExp.$1)
if (ffversion&lt;=2) { return true;}}
if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("1") != -1) ){return true;}
if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("2") != -1) ){return true;}
if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("3") != -1) ){return true;}
return false;
}</pre>
<p>There are a few ways to detect the browser and correct version. Most problems i had with Safari &#8211; because i cant&#8217;t find any stand-alone Version-Code &#8211; so i had to workaround &#8230; and built 3 queries.</p>
<p>If you have an better an easier idea &#8211; please let me know!</p>
<p>You can check our Sites now with &#8220;old&#8221; Browsers (IE &lt;=6, Opera &lt;9, Safari &lt;=3, Firefox &lt;=2) and see what happens &#8230; <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&#8230; Martin</p>
<p><strong>UPDATE (25.06.2009):</strong></p>
<p>I have a new version for browser detecting. Now the &#8220;Opera Problem&#8221; is solved, every <strong>Opera &lt;= Version 9.5 </strong>gets now the Warning-Popup, and not all 9.x versions.<br />
(Thanks to Ulf <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<pre>function badBrowser(){
    if($.browser.msie &amp;&amp; parseInt($.browser.version) &lt;= 6){ return true;}                  //IE ab ver. 6.0

    if($.browser.opera &amp;&amp; ($.browser.version *10) &lt;= 95) { return true;}                //Opera ab ver. 9.5

  if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){
    var ffversion=new Number(RegExp.$1)
    if (ffversion&lt;=2) { return true;}}                                                   //Firefox ab ver. 2.0

    if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("1.") != -1) ){return true;}    //Safari ver. 1.0
    if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("2.") != -1) ){return true;}    //Safari ver. 2.0
    if ($.browser.safari &amp;&amp; (navigator.appVersion.indexOf("3.") != -1) ){return true;}    //Safari ver. 3.0

    return false;
}</pre>
<p>more problems? tell us &#8230;</p>

<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-032528-opera-80-windows-xp-9859c34422442fbcd7347674d6e6453c/' title='Opera Version 8.0'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-032528-opera-80-windows-xp-9859c34422442fbcd7347674d6e6453c-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 8.0" /></a>
<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-034216-opera-925-windows-xp-4a2abe40731b943e6004d449c3262623/' title='Opera Version 9.25'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-034216-opera-925-windows-xp-4a2abe40731b943e6004d449c3262623-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 9.25" /></a>
<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-032647-opera-960-windows-xp-3b592cade0897b6df6d565b9b03421a4/' title='Opera Version 9.60'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-032647-opera-960-windows-xp-3b592cade0897b6df6d565b9b03421a4-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 9.60" /></a>
<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-032747-opera-964-windows-xp-a1edca7dcdf40b22c2da9d87302768bf/' title='Opera Version 9.64'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-032747-opera-964-windows-xp-a1edca7dcdf40b22c2da9d87302768bf-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 9.64" /></a>
<a href='http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/090625-032539-opera-1000-windows-xp-57f87d8fbc2ef0c2587b46ce34524b2f/' title='Opera Version 10.00'><img width="150" height="150" src="http://blog.team-noir.net/wp-content/uploads/2009/06/090625-032539-opera-1000-windows-xp-57f87d8fbc2ef0c2587b46ce34524b2f-150x150.png" class="attachment-thumbnail" alt="" title="Opera Version 10.00" /></a>

<h3><strong>UPDATE:</strong></h3>
<h4><a title="check out the new version" href="http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/">new<strong> badBrowser</strong> Version released !!!</a></h4>
<a href="http://blog.team-noir.net/wp-content/plugins/download-monitor/download.php?id=2" title="1.4"><img src="http://blog.team-noir.net/wp-content/uploads/download.png" title="Download badBrowser Version 1.4" /></a> <a href="http://blog.team-noir.net/wp-content/plugins/download-monitor/download.php?id=2" title="1.4">badBrowser Version 1.4</a>  ( 172x )
<p><a title="check out the new version!" href="http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/">more information</a></p>


<p>Related posts:<ol><li><a href='http://blog.team-noir.net/2010/05/jquery-badbrowser-update-version-1-4/' rel='bookmark' title='Permanent Link: jQuery badBrowser Update Version 1.4'>jQuery badBrowser Update Version 1.4</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Permanent Link: Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
<li><a href='http://blog.team-noir.net/2009/07/release-bad-browser-new-version-13/' rel='bookmark' title='Permanent Link: Release: bad Browser &#8211; new Version 1.3'>Release: bad Browser &#8211; new Version 1.3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2009/06/fight-old-browsers-warning-with-jquery/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
	</channel>
</rss>
