<?xml version="1.0" encoding="UTF-8"?>
<codes type="array">
  <code>
    <code>* html #selector {property:value;} /* Only IE6 and lower will see this */
*+html #selector {property:value;} /* Only IE7 will see this */</code>
    <created-at type="datetime">2009-08-22T15:27:23Z</created-at>
    <description></description>
    <id type="integer">194</id>
    <language-id type="integer">9</language-id>
    <privated type="boolean">false</privated>
    <title>ie 6 and 7 selectors hack</title>
    <updated-at type="datetime">2009-08-22T15:27:23Z</updated-at>
    <user-id type="integer">7</user-id>
  </code>
  <code>
    <code>validates_attachment_content_type :image,
  :content_type =&gt; [
    'image/jpeg',
    'image/pjpeg', # for progressive jpeg (IE mine-type for regular jpeg) 
    'image/png',
    'image/x-png', # IE mine-type for PNG
    'image/gif'
]</code>
    <created-at type="datetime">2009-08-16T21:43:37Z</created-at>
    <description></description>
    <id type="integer">191</id>
    <language-id type="integer">39</language-id>
    <privated type="boolean">false</privated>
    <title>paperclip ie validation</title>
    <updated-at type="datetime">2009-08-16T21:43:37Z</updated-at>
    <user-id type="integer">7</user-id>
  </code>
  <code>
    <code>/* IE6 - pseudo class :hover */ 
$(document).ready(function(){ 
	if(jQuery.browser.msie &amp;&amp; jQuery.browser.version&lt;7){ 
		$('[class*=&quot;bla&quot;]').hover( 
		function () { 
			$(this).addClass('hover'); 
		}, 
		function () { 
			$(this).removeClass('hover'); 
		} 
		); 
	} 
});</code>
    <created-at type="datetime">2009-08-10T20:42:45Z</created-at>
    <description></description>
    <id type="integer">190</id>
    <language-id type="integer">19</language-id>
    <privated type="boolean">false</privated>
    <title>hover for ie 6</title>
    <updated-at type="datetime">2009-08-10T20:42:45Z</updated-at>
    <user-id type="integer">7</user-id>
  </code>
  <code>
    <code>input { overflow: visible; }</code>
    <created-at type="datetime">2009-03-14T15:24:37Z</created-at>
    <description>ie sux!</description>
    <id type="integer">160</id>
    <language-id type="integer">9</language-id>
    <privated type="boolean">false</privated>
    <title>fixing the ridiculous auto-padding in ie (win) submit buttons</title>
    <updated-at type="datetime">2009-03-14T15:24:37Z</updated-at>
    <user-id type="integer">7</user-id>
  </code>
  <code>
    <code>function isIE() {
  return /msie/i.test(navigator.userAgent) &amp;&amp; !/opera/i.test(navigator.userAgent);
}</code>
    <created-at type="datetime">2008-11-26T14:42:19Z</created-at>
    <description></description>
    <id type="integer">117</id>
    <language-id type="integer">19</language-id>
    <privated type="boolean">false</privated>
    <title>detect ie function</title>
    <updated-at type="datetime">2008-11-26T14:42:19Z</updated-at>
    <user-id type="integer">7</user-id>
  </code>
  <code>
    <code>&lt;!--[if IE]&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;ie-only.css&quot; /&gt;
&lt;![endif]--&gt;

# Embedded CSS
&lt;!--[if IE]&gt;
  &lt;style type=&quot;text/css&quot;&gt;
    #container {font-family: arial,verdana,sans-serif,tahoma;}
  &lt;/style&gt;
&lt;![endif]--&gt;

# The opposite technique, targeting only NON-IE browsers:
&lt;!--[if IE]&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;ie-only.css&quot; /&gt;
&lt;![endif]--&gt;

# Target specific versions of IE
# IE 7 ONLY:
&lt;!--[if IE 7]&gt;
	&lt;link href=&quot;IE-7-SPECIFIC.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
&lt;![endif]--&gt;

# IE 6 ONLY:
&lt;!--[if IE 6]&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;IE-6-SPECIFIC.css&quot; /&gt;
&lt;![endif]--&gt;

# IE 5 ONLY:
&lt;!--[if IE 5]&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;IE-5-SPECIFIC.css&quot; /&gt;
&lt;![endif]--&gt;

# IE 5.5 ONLY:
&lt;!--[if IE 5.5000]&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;IE-55-SPECIFIC.css&quot; /&gt;
&lt;![endif]--&gt;

# VERSION OF IE VERSION 6 OR LOWER: (I find this one pretty handy)
&lt;!--[if lt IE 7]&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;IE-6-OR-LOWER-SPECIFIC.css&quot; /&gt;
&lt;![endif]--&gt;</code>
    <created-at type="datetime">2008-09-17T02:47:23Z</created-at>
    <description></description>
    <id type="integer">64</id>
    <language-id type="integer">16</language-id>
    <privated type="boolean">false</privated>
    <title>ie conditional hack</title>
    <updated-at type="datetime">2008-09-17T02:47:23Z</updated-at>
    <user-id type="integer">7</user-id>
  </code>
  <code>
    <code>p {			
	background: green !important; /* Major browsers other than IE 6 and below respect the importance immediately */
	background: red; /* IE 6 and below use this value instead, even though the above was marked as important */
}</code>
    <created-at type="datetime">2008-07-23T19:41:29Z</created-at>
    <description></description>
    <id type="integer">42</id>
    <language-id type="integer">9</language-id>
    <privated type="boolean">false</privated>
    <title>another ie 6 hack</title>
    <updated-at type="datetime">2008-07-23T19:41:29Z</updated-at>
    <user-id type="integer">7</user-id>
  </code>
  <code>
    <code>selector {
  min-height:500px;
  height:auto !important;
  height:500px;
}</code>
    <created-at type="datetime">2008-07-17T19:27:49Z</created-at>
    <description>http://www.dustindiaz.com/min-height-fast-hack/</description>
    <id type="integer">38</id>
    <language-id type="integer">9</language-id>
    <privated type="boolean">false</privated>
    <title>another min-height hack</title>
    <updated-at type="datetime">2008-07-17T19:27:49Z</updated-at>
    <user-id type="integer">7</user-id>
  </code>
</codes>
