<?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: CSS Select Options IE Cut Off</title>
	<atom:link href="http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/feed/" rel="self" type="application/rss+xml" />
	<link>http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/</link>
	<description>More Like Random Buttars</description>
	<lastBuildDate>Fri, 04 Mar 2011 05:41:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Brandon Buttars</title>
		<link>http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/#comment-27</link>
		<dc:creator>Brandon Buttars</dc:creator>
		<pubDate>Fri, 04 Feb 2011 05:39:57 +0000</pubDate>
		<guid isPermaLink="false">http://brandonbuttars.com/?p=92#comment-27</guid>
		<description>Thanks for the heads up on the IE8 problem.</description>
		<content:encoded><![CDATA[<p>Thanks for the heads up on the IE8 problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Buttars</title>
		<link>http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/#comment-26</link>
		<dc:creator>Brandon Buttars</dc:creator>
		<pubDate>Fri, 04 Feb 2011 05:35:46 +0000</pubDate>
		<guid isPermaLink="false">http://brandonbuttars.com/?p=92#comment-26</guid>
		<description>Fine by me.</description>
		<content:encoded><![CDATA[<p>Fine by me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Søgemaskineoptimering</title>
		<link>http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/#comment-22</link>
		<dc:creator>Søgemaskineoptimering</dc:creator>
		<pubDate>Thu, 03 Feb 2011 21:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://brandonbuttars.com/?p=92#comment-22</guid>
		<description>Do you mind if I link to your article (http://www.lhessellund.dk/facts/blogs-you-have-to-read/)? I am about to make a list of interesting blogs for my readers. Regards L.Hessellund</description>
		<content:encoded><![CDATA[<p>Do you mind if I link to your article (<a href="http://www.lhessellund.dk/facts/blogs-you-have-to-read/" rel="nofollow">http://www.lhessellund.dk/facts/blogs-you-have-to-read/</a>)? I am about to make a list of interesting blogs for my readers. Regards L.Hessellund</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Bastun</title>
		<link>http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/#comment-12</link>
		<dc:creator>Andrei Bastun</dc:creator>
		<pubDate>Sun, 28 Mar 2010 15:46:11 +0000</pubDate>
		<guid isPermaLink="false">http://brandonbuttars.com/?p=92#comment-12</guid>
		<description>I found that in IE8 Select closes if I use focus or click events for resize and absolute positioning.
And user have to click it again to view options.

I replaced focus event to mousedown to avoid this.</description>
		<content:encoded><![CDATA[<p>I found that in IE8 Select closes if I use focus or click events for resize and absolute positioning.<br />
And user have to click it again to view options.</p>
<p>I replaced focus event to mousedown to avoid this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Buttars</title>
		<link>http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/#comment-11</link>
		<dc:creator>Brandon Buttars</dc:creator>
		<pubDate>Tue, 27 Oct 2009 17:16:13 +0000</pubDate>
		<guid isPermaLink="false">http://brandonbuttars.com/?p=92#comment-11</guid>
		<description>Thanks Jeroen.  I&#039;ve used your modification now and it makes life even easier.  Here&#039;s the whole code I used:
&lt;code&gt;$(function(){
    if($.browser.msie){
      $(&#039;select&#039;).focus(function(){
        $(this).parent().parent().addClass(&#039;ie_select&#039;);
      });
      $(&#039;select&#039;).blur(function(){
        $(this).parent().parent().removeClass(&#039;ie_select&#039;);
      });
    }
  });&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks Jeroen.  I&#8217;ve used your modification now and it makes life even easier.  Here&#8217;s the whole code I used:<br />
<code>$(function(){<br />
    if($.browser.msie){<br />
      $('select').focus(function(){<br />
        $(this).parent().parent().addClass('ie_select');<br />
      });<br />
      $('select').blur(function(){<br />
        $(this).parent().parent().removeClass('ie_select');<br />
      });<br />
    }<br />
  });</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen</title>
		<link>http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/#comment-10</link>
		<dc:creator>Jeroen</dc:creator>
		<pubDate>Fri, 02 Oct 2009 09:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://brandonbuttars.com/?p=92#comment-10</guid>
		<description>You might wanna apply this code to IE only:

if($.browser.msie){
	$(&#039;select&#039;).focus(function(){
		$(this).addClass(&#039;ie-select&#039;);
	}).blur(function(){
		$(this).removeClass(&#039;ie-select&#039;);
	});
}</description>
		<content:encoded><![CDATA[<p>You might wanna apply this code to IE only:</p>
<p>if($.browser.msie){<br />
	$(&#8216;select&#8217;).focus(function(){<br />
		$(this).addClass(&#8216;ie-select&#8217;);<br />
	}).blur(function(){<br />
		$(this).removeClass(&#8216;ie-select&#8217;);<br />
	});<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

