<?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>Tue, 06 Apr 2010 16:13:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrei Bastun</title>
		<link>http://brandonbuttars.com/2009/09/css-select-options-internet-explorer-cut-off/comment-page-1/#comment-129</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-129</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-page-1/#comment-61</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-61</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-page-1/#comment-53</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-53</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 />
	$(&#8217;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>
