<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: jQuery IE detection issue workaround</title>
	<atom:link href="http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/</link>
	<description>Think Work Learn Share</description>
	<lastBuildDate>Mon, 08 Mar 2010 00:32:58 +1100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Oleg</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-280</link>
		<dc:creator>Oleg</dc:creator>
		<pubDate>Mon, 08 Mar 2010 00:32:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-280</guid>
		<description>Simply and fats, thanks!</description>
		<content:encoded><![CDATA[<p>Simply and fats, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jose Manuel</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-269</link>
		<dc:creator>Jose Manuel</dc:creator>
		<pubDate>Fri, 13 Nov 2009 16:01:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-269</guid>
		<description>My solution:

The code for jqmodal:

	var BrowserDetect = {
		init: function () {
			this.browser = this.searchString(this.dataBrowser) &#124;&#124; &quot;An unknown browser&quot;;
			this.version = this.searchVersion(navigator.userAgent)
				&#124;&#124; this.searchVersion(navigator.appVersion)
				&#124;&#124; &quot;an unknown version&quot;;
			this.OS = this.searchString(this.dataOS) &#124;&#124; &quot;an unknown OS&quot;;
		},
		searchString: function (data) {
			for (var i=0;i&lt;data.length;i++)	{
				var dataString = data[i].string;
				var dataProp = data[i].prop;
				this.versionSearchString = data[i].versionSearch &#124;&#124; data[i].identity;
				if (dataString) {
					if (dataString.indexOf(data[i].subString) != -1)
						return data[i].identity;
				}
				else if (dataProp)
					return data[i].identity;
			}
		},
		searchVersion: function (dataString) {
			var index = dataString.indexOf(this.versionSearchString);
			if (index == -1) return;
			return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
		},
		dataBrowser: [
			{
				string: navigator.userAgent,
				subString: &quot;Chrome&quot;,
				identity: &quot;Chrome&quot;
			},
			{ 	string: navigator.userAgent,
				subString: &quot;OmniWeb&quot;,
				versionSearch: &quot;OmniWeb/&quot;,
				identity: &quot;OmniWeb&quot;
			},
			{
				string: navigator.vendor,
				subString: &quot;Apple&quot;,
				identity: &quot;Safari&quot;,
				versionSearch: &quot;Version&quot;
			},
			{
				prop: window.opera,
				identity: &quot;Opera&quot;
			},
			{
				string: navigator.vendor,
				subString: &quot;iCab&quot;,
				identity: &quot;iCab&quot;
			},
			{
				string: navigator.vendor,
				subString: &quot;KDE&quot;,
				identity: &quot;Konqueror&quot;
			},
			{
				string: navigator.userAgent,
				subString: &quot;Firefox&quot;,
				identity: &quot;Firefox&quot;
			},
			{
				string: navigator.vendor,
				subString: &quot;Camino&quot;,
				identity: &quot;Camino&quot;
			},
			{		// for newer Netscapes (6+)
				string: navigator.userAgent,
				subString: &quot;Netscape&quot;,
				identity: &quot;Netscape&quot;
			},
			{
				string: navigator.userAgent,
				subString: &quot;MSIE&quot;,
				identity: &quot;Explorer&quot;,
				versionSearch: &quot;MSIE&quot;
			},
			{
				string: navigator.userAgent,
				subString: &quot;Gecko&quot;,
				identity: &quot;Mozilla&quot;,
				versionSearch: &quot;rv&quot;
			},
			{ 		// for older Netscapes (4-)
				string: navigator.userAgent,
				subString: &quot;Mozilla&quot;,
				identity: &quot;Netscape&quot;,
				versionSearch: &quot;Mozilla&quot;
			}
		],
		dataOS : [
			{
				string: navigator.platform,
				subString: &quot;Win&quot;,
				identity: &quot;Windows&quot;
			},
			{
				string: navigator.platform,
				subString: &quot;Mac&quot;,
				identity: &quot;Mac&quot;
			},
			{
				   string: navigator.userAgent,
				   subString: &quot;iPhone&quot;,
				   identity: &quot;iPhone/iPod&quot;
			},
			{
				string: navigator.platform,
				subString: &quot;Linux&quot;,
				identity: &quot;Linux&quot;
			}
		]
	
	};
	BrowserDetect.init();

/*
 * jqModal - Minimalist Modaling with jQuery
 *   (http://dev.iceburg.net/jquery/jqModal/)
 *
 * Copyright (c) 2007,2008 Brice Burgess 
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 * 
 * $Version: 03/01/2009 +r14
 */
(function($) {
$.fn.jqm=function(o){
var p={
overlay: 50,
overlayClass: &#039;jqmOverlay&#039;,
closeClass: &#039;jqmClose&#039;,
trigger: &#039;.jqModal&#039;,
ajax: F,
ajaxText: &#039;&#039;,
target: F,
modal: F,
toTop: F,
onShow: F,
onHide: F,
onLoad: F
};
return this.each(function(){if(this._jqm)return H[this._jqm].c=$.extend({},H[this._jqm].c,o);s++;this._jqm=s;
H[s]={c:$.extend(p,$.jqm.params,o),a:F,w:$(this).addClass(&#039;jqmID&#039;+s),s:s};
if(p.trigger)$(this).jqmAddTrigger(p.trigger);
});};

$.fn.jqmAddClose=function(e){return hs(this,e,&#039;jqmHide&#039;);};
$.fn.jqmAddTrigger=function(e){return hs(this,e,&#039;jqmShow&#039;);};
$.fn.jqmShow=function(t){return this.each(function(){t=t&#124;&#124;window.event;$.jqm.open(this._jqm,t);});};
$.fn.jqmHide=function(t){return this.each(function(){t=t&#124;&#124;window.event;$.jqm.close(this._jqm,t)});};

$.jqm = {
hash:{},
open:function(s,t){var h=H[s],c=h.c,cc=&#039;.&#039;+c.closeClass,z=(parseInt(h.w.css(&#039;z-index&#039;))),z=(z&gt;0)?z:3000,o=$(&#039;&#039;).css({height:&#039;100%&#039;,width:&#039;100%&#039;,position:&#039;fixed&#039;,left:0,top:0,&#039;z-index&#039;:z-1,opacity:c.overlay/100});if(h.a)return F;h.t=t;h.a=true;h.w.css(&#039;z-index&#039;,z);
 if(c.modal) {if(!A[0])L(&#039;bind&#039;);A.push(s);}
 else if(c.overlay &gt; 0)h.w.jqmAddClose(o);
 else o=F;

 h.o=(o)?o.addClass(c.overlayClass).prependTo(&#039;body&#039;):F;
 if(ie6){$(&#039;html,body&#039;).css({height:&#039;100%&#039;,width:&#039;100%&#039;});if(o){o=o.css({position:&#039;absolute&#039;})[0];for(var y in {Top:1,Left:1})o.style.setExpression(y.toLowerCase(),&quot;(_=(document.documentElement.scroll&quot;+y+&quot; &#124;&#124; document.body.scroll&quot;+y+&quot;))+&#039;px&#039;&quot;);}}

 if(c.ajax) {var r=c.target&#124;&#124;h.w,u=c.ajax,r=(typeof r == &#039;string&#039;)?$(r,h.w):$(r),u=(u.substr(0,1) == &#039;@&#039;)?$(t).attr(u.substring(1)):u;
  r.html(c.ajaxText).load(u,function(){if(c.onLoad)c.onLoad.call(this,h);if(cc)h.w.jqmAddClose($(cc,h.w));e(h);});}
 else if(cc)h.w.jqmAddClose($(cc,h.w));

 if(c.toTop&amp;&amp;h.o)h.w.before(&#039;&#039;).insertAfter(h.o);	
 (c.onShow)?c.onShow(h):h.w.show();e(h);return F;
},
close:function(s){var h=H[s];if(!h.a)return F;h.a=F;
 if(A[0]){A.pop();if(!A[0])L(&#039;unbind&#039;);}
 if(h.c.toTop&amp;&amp;h.o)$(&#039;#jqmP&#039;+h.w[0]._jqm).after(h.w).remove();
 if(h.c.onHide)h.c.onHide(h);else{h.w.hide();if(h.o)h.o.remove();} return F;
},
params:{}};
var s=0,H=$.jqm.hash,A=[],ie6=$.browser.msie&amp;&amp;($.browser.version == &quot;6.0&quot;)&amp;&amp;(BrowserDetect.version!=8),F=false,
i=$(&#039;&#039;).css({opacity:0}),
e=function(h){if(ie6)if(h.o)h.o.html(&#039;&#039;).prepend(i);else if(!$(&#039;iframe.jqm&#039;,h.w)[0])h.w.prepend(i); f(h);},
f=function(h){try{$(&#039;:input:visible&#039;,h.w)[0].focus();}catch(_){}},
L=function(t){$()[t](&quot;keypress&quot;,m)[t](&quot;keydown&quot;,m)[t](&quot;mousedown&quot;,m);},
m=function(e){var h=H[A[A.length-1]],r=(!$(e.target).parents(&#039;.jqmID&#039;+h.s)[0]);if(r)f(h);return !r;},
hs=function(w,t,c){return w.each(function(){var s=this._jqm;$(t).each(function() {
 if(!this[c]){this[c]=[];$(this).click(function(){for(var i in {jqmShow:1,jqmHide:1})for(var s in this[i])if(H[this[i][s]])H[this[i][s]].w[i](this);return F;});}this[c].push(s);});});};
})(jQuery);</description>
		<content:encoded><![CDATA[<p>My solution:</p>
<p>The code for jqmodal:</p>
<p>	var BrowserDetect = {<br />
		init: function () {<br />
			this.browser = this.searchString(this.dataBrowser) || &#8220;An unknown browser&#8221;;<br />
			this.version = this.searchVersion(navigator.userAgent)<br />
				|| this.searchVersion(navigator.appVersion)<br />
				|| &#8220;an unknown version&#8221;;<br />
			this.OS = this.searchString(this.dataOS) || &#8220;an unknown OS&#8221;;<br />
		},<br />
		searchString: function (data) {<br />
			for (var i=0;i&lt;data.length;i++)	{<br />
				var dataString = data[i].string;<br />
				var dataProp = data[i].prop;<br />
				this.versionSearchString = data[i].versionSearch || data[i].identity;<br />
				if (dataString) {<br />
					if (dataString.indexOf(data[i].subString) != -1)<br />
						return data[i].identity;<br />
				}<br />
				else if (dataProp)<br />
					return data[i].identity;<br />
			}<br />
		},<br />
		searchVersion: function (dataString) {<br />
			var index = dataString.indexOf(this.versionSearchString);<br />
			if (index == -1) return;<br />
			return parseFloat(dataString.substring(index+this.versionSearchString.length+1));<br />
		},<br />
		dataBrowser: [<br />
			{<br />
				string: navigator.userAgent,<br />
				subString: &quot;Chrome&quot;,<br />
				identity: &quot;Chrome&quot;<br />
			},<br />
			{ 	string: navigator.userAgent,<br />
				subString: &quot;OmniWeb&quot;,<br />
				versionSearch: &quot;OmniWeb/&quot;,<br />
				identity: &quot;OmniWeb&quot;<br />
			},<br />
			{<br />
				string: navigator.vendor,<br />
				subString: &quot;Apple&quot;,<br />
				identity: &quot;Safari&quot;,<br />
				versionSearch: &quot;Version&quot;<br />
			},<br />
			{<br />
				prop: window.opera,<br />
				identity: &quot;Opera&quot;<br />
			},<br />
			{<br />
				string: navigator.vendor,<br />
				subString: &quot;iCab&quot;,<br />
				identity: &quot;iCab&quot;<br />
			},<br />
			{<br />
				string: navigator.vendor,<br />
				subString: &quot;KDE&quot;,<br />
				identity: &quot;Konqueror&quot;<br />
			},<br />
			{<br />
				string: navigator.userAgent,<br />
				subString: &quot;Firefox&quot;,<br />
				identity: &quot;Firefox&quot;<br />
			},<br />
			{<br />
				string: navigator.vendor,<br />
				subString: &quot;Camino&quot;,<br />
				identity: &quot;Camino&quot;<br />
			},<br />
			{		// for newer Netscapes (6+)<br />
				string: navigator.userAgent,<br />
				subString: &quot;Netscape&quot;,<br />
				identity: &quot;Netscape&quot;<br />
			},<br />
			{<br />
				string: navigator.userAgent,<br />
				subString: &quot;MSIE&quot;,<br />
				identity: &quot;Explorer&quot;,<br />
				versionSearch: &quot;MSIE&quot;<br />
			},<br />
			{<br />
				string: navigator.userAgent,<br />
				subString: &quot;Gecko&quot;,<br />
				identity: &quot;Mozilla&quot;,<br />
				versionSearch: &quot;rv&quot;<br />
			},<br />
			{ 		// for older Netscapes (4-)<br />
				string: navigator.userAgent,<br />
				subString: &quot;Mozilla&quot;,<br />
				identity: &quot;Netscape&quot;,<br />
				versionSearch: &quot;Mozilla&quot;<br />
			}<br />
		],<br />
		dataOS : [<br />
			{<br />
				string: navigator.platform,<br />
				subString: &quot;Win&quot;,<br />
				identity: &quot;Windows&quot;<br />
			},<br />
			{<br />
				string: navigator.platform,<br />
				subString: &quot;Mac&quot;,<br />
				identity: &quot;Mac&quot;<br />
			},<br />
			{<br />
				   string: navigator.userAgent,<br />
				   subString: &quot;iPhone&quot;,<br />
				   identity: &quot;iPhone/iPod&quot;<br />
			},<br />
			{<br />
				string: navigator.platform,<br />
				subString: &quot;Linux&quot;,<br />
				identity: &quot;Linux&quot;<br />
			}<br />
		]</p>
<p>	};<br />
	BrowserDetect.init();</p>
<p>/*<br />
 * jqModal &#8211; Minimalist Modaling with jQuery<br />
 *   (<a href="http://dev.iceburg.net/jquery/jqModal/" rel="nofollow">http://dev.iceburg.net/jquery/jqModal/</a>)<br />
 *<br />
 * Copyright (c) 2007,2008 Brice Burgess<br />
 * Dual licensed under the MIT and GPL licenses:<br />
 *   <a href="http://www.opensource.org/licenses/mit-license.php" rel="nofollow">http://www.opensource.org/licenses/mit-license.php</a><br />
 *   <a href="http://www.gnu.org/licenses/gpl.html" rel="nofollow">http://www.gnu.org/licenses/gpl.html</a><br />
 *<br />
 * $Version: 03/01/2009 +r14<br />
 */<br />
(function($) {<br />
$.fn.jqm=function(o){<br />
var p={<br />
overlay: 50,<br />
overlayClass: &#8216;jqmOverlay&#8217;,<br />
closeClass: &#8216;jqmClose&#8217;,<br />
trigger: &#8216;.jqModal&#8217;,<br />
ajax: F,<br />
ajaxText: &#8221;,<br />
target: F,<br />
modal: F,<br />
toTop: F,<br />
onShow: F,<br />
onHide: F,<br />
onLoad: F<br />
};<br />
return this.each(function(){if(this._jqm)return H[this._jqm].c=$.extend({},H[this._jqm].c,o);s++;this._jqm=s;<br />
H[s]={c:$.extend(p,$.jqm.params,o),a:F,w:$(this).addClass(&#8217;jqmID&#8217;+s),s:s};<br />
if(p.trigger)$(this).jqmAddTrigger(p.trigger);<br />
});};</p>
<p>$.fn.jqmAddClose=function(e){return hs(this,e,&#8217;jqmHide&#8217;);};<br />
$.fn.jqmAddTrigger=function(e){return hs(this,e,&#8217;jqmShow&#8217;);};<br />
$.fn.jqmShow=function(t){return this.each(function(){t=t||window.event;$.jqm.open(this._jqm,t);});};<br />
$.fn.jqmHide=function(t){return this.each(function(){t=t||window.event;$.jqm.close(this._jqm,t)});};</p>
<p>$.jqm = {<br />
hash:{},<br />
open:function(s,t){var h=H[s],c=h.c,cc=&#8217;.'+c.closeClass,z=(parseInt(h.w.css(&#8217;z-index&#8217;))),z=(z&gt;0)?z:3000,o=$(&#8221;).css({height:&#8217;100%&#8217;,width:&#8217;100%&#8217;,position:&#8217;fixed&#8217;,left:0,top:0,&#8217;z-index&#8217;:z-1,opacity:c.overlay/100});if(h.a)return F;h.t=t;h.a=true;h.w.css(&#8217;z-index&#8217;,z);<br />
 if(c.modal) {if(!A[0])L(&#8217;bind&#8217;);A.push(s);}<br />
 else if(c.overlay &gt; 0)h.w.jqmAddClose(o);<br />
 else o=F;</p>
<p> h.o=(o)?o.addClass(c.overlayClass).prependTo(&#8217;body&#8217;):F;<br />
 if(ie6){$(&#8217;html,body&#8217;).css({height:&#8217;100%&#8217;,width:&#8217;100%&#8217;});if(o){o=o.css({position:&#8217;absolute&#8217;})[0];for(var y in {Top:1,Left:1})o.style.setExpression(y.toLowerCase(),&#8221;(_=(document.documentElement.scroll&#8221;+y+&#8221; || document.body.scroll&#8221;+y+&#8221;))+&#8217;px&#8217;&#8221;);}}</p>
<p> if(c.ajax) {var r=c.target||h.w,u=c.ajax,r=(typeof r == &#8217;string&#8217;)?$(r,h.w):$(r),u=(u.substr(0,1) == &#8216;@&#8217;)?$(t).attr(u.substring(1)):u;<br />
  r.html(c.ajaxText).load(u,function(){if(c.onLoad)c.onLoad.call(this,h);if(cc)h.w.jqmAddClose($(cc,h.w));e(h);});}<br />
 else if(cc)h.w.jqmAddClose($(cc,h.w));</p>
<p> if(c.toTop&amp;&amp;h.o)h.w.before(&#8221;).insertAfter(h.o);<br />
 (c.onShow)?c.onShow(h):h.w.show();e(h);return F;<br />
},<br />
close:function(s){var h=H[s];if(!h.a)return F;h.a=F;<br />
 if(A[0]){A.pop();if(!A[0])L(&#8217;unbind&#8217;);}<br />
 if(h.c.toTop&amp;&amp;h.o)$(&#8217;#jqmP&#8217;+h.w[0]._jqm).after(h.w).remove();<br />
 if(h.c.onHide)h.c.onHide(h);else{h.w.hide();if(h.o)h.o.remove();} return F;<br />
},<br />
params:{}};<br />
var s=0,H=$.jqm.hash,A=[],ie6=$.browser.msie&amp;&amp;($.browser.version == &#8220;6.0&#8243;)&amp;&amp;(BrowserDetect.version!=8),F=false,<br />
i=$(&#8221;).css({opacity:0}),<br />
e=function(h){if(ie6)if(h.o)h.o.html(&#8221;).prepend(i);else if(!$(&#8217;iframe.jqm&#8217;,h.w)[0])h.w.prepend(i); f(h);},<br />
f=function(h){try{$(&#8217;:input:visible&#8217;,h.w)[0].focus();}catch(_){}},<br />
L=function(t){$()[t](&#8221;keypress&#8221;,m)[t](&#8221;keydown&#8221;,m)[t](&#8221;mousedown&#8221;,m);},<br />
m=function(e){var h=H[A[A.length-1]],r=(!$(e.target).parents(&#8217;.jqmID&#8217;+h.s)[0]);if(r)f(h);return !r;},<br />
hs=function(w,t,c){return w.each(function(){var s=this._jqm;$(t).each(function() {<br />
 if(!this[c]){this[c]=[];$(this).click(function(){for(var i in {jqmShow:1,jqmHide:1})for(var s in this[i])if(H[this[i][s]])H[this[i][s]].w[i](this);return F;});}this[c].push(s);});});};<br />
})(jQuery);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-266</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Tue, 06 Oct 2009 13:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-266</guid>
		<description>Sorry... I get it.  Found how to use this.  You can delete my comments.

Greg</description>
		<content:encoded><![CDATA[<p>Sorry&#8230; I get it.  Found how to use this.  You can delete my comments.</p>
<p>Greg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-265</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Mon, 05 Oct 2009 17:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-265</guid>
		<description>I&#039;m having this issue using jq.modal.  Where would I put this code?

ie6=$.browser.msie&amp;&amp;($.browser.version == &quot;6.0&quot;)&amp;&amp;!window.XMLHttpRequest;</description>
		<content:encoded><![CDATA[<p>I&#8217;m having this issue using jq.modal.  Where would I put this code?</p>
<p>ie6=$.browser.msie&amp;&amp;($.browser.version == &#8220;6.0&#8243;)&amp;&amp;!window.XMLHttpRequest;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thorn</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-264</link>
		<dc:creator>thorn</dc:creator>
		<pubDate>Wed, 30 Sep 2009 10:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-264</guid>
		<description>found it
http://dev.jquery.com/ticket/2661</description>
		<content:encoded><![CDATA[<p>found it<br />
<a href="http://dev.jquery.com/ticket/2661" rel="nofollow">http://dev.jquery.com/ticket/2661</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thorn</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-263</link>
		<dc:creator>thorn</dc:creator>
		<pubDate>Wed, 30 Sep 2009 09:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-263</guid>
		<description>Thank you for sharing this.
Was this issue submitted to the jQuery bug tracker?</description>
		<content:encoded><![CDATA[<p>Thank you for sharing this.<br />
Was this issue submitted to the jQuery bug tracker?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garry</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-262</link>
		<dc:creator>Garry</dc:creator>
		<pubDate>Wed, 23 Sep 2009 10:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-262</guid>
		<description>Great post and thank you for doing it. Has saved me a massive headache!</description>
		<content:encoded><![CDATA[<p>Great post and thank you for doing it. Has saved me a massive headache!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kost</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-256</link>
		<dc:creator>kost</dc:creator>
		<pubDate>Fri, 18 Sep 2009 09:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-256</guid>
		<description>Thank you!

Fixed my problems with wrong IE8/IE6 detection.</description>
		<content:encoded><![CDATA[<p>Thank you!</p>
<p>Fixed my problems with wrong IE8/IE6 detection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Bardenhagen</title>
		<link>http://blog.orite.com.au/web_development/2009-06-30/jquery-ie-detection-issue-workaround/comment-page-1/#comment-194</link>
		<dc:creator>Peter Bardenhagen</dc:creator>
		<pubDate>Thu, 09 Jul 2009 00:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.orite.com.au/?p=110#comment-194</guid>
		<description>Thank you so much!! Very well explained. Fixed our problem too!</description>
		<content:encoded><![CDATA[<p>Thank you so much!! Very well explained. Fixed our problem too!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
