<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - jonhenshaw</title>
<link>http://snipplr.com/users/jonhenshaw/tags/ie</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 04 Dec 2008 23:57:36 GMT</pubDate>
<item>
<title>(JavaScript) jquery IE6 Transparent PNG Fix</title>
<link>http://snipplr.com/view/5657/jquery-ie6-transparent-png-fix/</link>
<description><![CDATA[ <p>This plugin designed to fix that problem by applying appropriate filters to user specified elements, while keeping all element tags intact.

Plugin works well with both img elements within the DOM and css properties specified externally.

• It is chainable.

• Unlike some other png hack solutions, it does not replace/hide any of your html tags.

• You can revert applied changes using .iunfixpng().

• Extremely easy to use!</p> ]]></description>
<pubDate>Wed, 02 Apr 2008 09:17:36 GMT</pubDate>
<guid>http://snipplr.com/view/5657/jquery-ie6-transparent-png-fix/</guid>
</item>
<item>
<title>(CSS) CSS PNG Image Fix for IE</title>
<link>http://snipplr.com/view/4090/css-png-image-fix-for-ie/</link>
<description><![CDATA[ <p>The selector portion of the CSS rule targets which XHTML tags/classes this rule will be applied to. At first glance, it looks like all img tags as well as all tags with a class of "png". You’ll notice the * html in front of both of these. Wait, there is no “anytag” preceding the html tag, so this won’t get applied! True. For all non-crappy (that is a pro term by the way) browsers, this rule won’t get applied. However, since IE6 is a pile, it thinks that there is a tag before the html tag, so it will apply this rule. Great! Now IE6 is the only browser that will use this rule.</p> ]]></description>
<pubDate>Thu, 08 Nov 2007 08:22:32 GMT</pubDate>
<guid>http://snipplr.com/view/4090/css-png-image-fix-for-ie/</guid>
</item>
<item>
<title>(CSS) Transparent PNG Fix for IE 5.5 &amp;amp; 6</title>
<link>http://snipplr.com/view/2243/transparent-png-fix-for-ie-55--6/</link>
<description><![CDATA[ <p>This is an excellent solution for fixing IE 6's inability to display transparent PNGs correctly.

Step 1: Include the following conditional comment the HEAD area of your document. You will need to update the CSS selector and also the path to whereever you put the .htc file.

&amp;lt;!--[if lte IE 6]&amp;gt;
&amp;lt;style type="text/css"&amp;gt;
&amp;#160;&amp;#160;img { behavior: url(/css/iepngfix.htc) }
&amp;lt;/style&amp;gt;
&amp;lt;![endif]--&amp;gt;

Step 2: Create a transparent GIF that's 1x1 and save it as blank.gif in your images folder.

Step 3. Copy the source below and save it in a file called iepngfix.htc and place it in your CSS folder. Note, you may need to update the images folder to match the folder you're using on your site.

That's it. Once you have everything in place and assuming everything is referenced correclty, PNG transparency will work in IE 6.</p> ]]></description>
<pubDate>Wed, 07 Mar 2007 12:10:25 GMT</pubDate>
<guid>http://snipplr.com/view/2243/transparent-png-fix-for-ie-55--6/</guid>
</item>
<item>
<title>(CSS) Internet Explorer (IE6) CSS Hover</title>
<link>http://snipplr.com/view/1912/internet-explorer-ie6-css-hover/</link>
<description><![CDATA[ <p>IE6 and before doesn't support :hover in CSS (except for anchors). You can use this script to make hovers work in IE. Just add the following line to your stylesheet (this assumes the path of the file -- you may need to change it to reflect your paths).

body { behavior:url(&amp;quot;csshover.htc&amp;quot;); }</p> ]]></description>
<pubDate>Mon, 01 Jan 2007 20:17:07 GMT</pubDate>
<guid>http://snipplr.com/view/1912/internet-explorer-ie6-css-hover/</guid>
</item>
<item>
<title>(JavaScript) Browser Detect (from quirksmode)</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>(CSS) min-height for IE (and all other browsers)</title>
<link>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</link>
<description><![CDATA[ <p>Since min-height doesn't work in IE, this code makes up for IE's shortcomings. The first part of the code is the correct code that works in Firefox and Safari. The second part of the code is for IE. Internet Explorer will ignore min-height and is just given a height of 8em. The IE bug automatically expands the container to fit the extra text.</p> ]]></description>
<pubDate>Wed, 31 Dec 1969 19:00:00 GMT</pubDate>
<guid>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</guid>
</item>
</channel>
</rss>