<?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"
	>
<channel>
	<title>Comments on: jQuery selectbox replacement</title>
	<atom:link href="http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brainfault.com</link>
	<description>Just another blog</description>
	<pubDate>Mon, 06 Oct 2008 12:55:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Kyle</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-306</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Thu, 25 Sep 2008 21:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-306</guid>
		<description>Any idea when this will be working with safari? Shame that it doesn't right now. Let me know when it does!</description>
		<content:encoded><![CDATA[<p>Any idea when this will be working with safari? Shame that it doesn&#8217;t right now. Let me know when it does!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-303</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 23 Sep 2008 15:47:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-303</guid>
		<description>There seems to be a problem when an options contains the ampersand &#38; which results in an &#38; (ampersand plus following amp;) in the input proxy.

Changing "$input.val($(this).html());" to "$input.val($(this).text());" seems to prevent this.</description>
		<content:encoded><![CDATA[<p>There seems to be a problem when an options contains the ampersand &amp; which results in an &amp; (ampersand plus following amp;) in the input proxy.</p>
<p>Changing &#8220;$input.val($(this).html());&#8221; to &#8220;$input.val($(this).text());&#8221; seems to prevent this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-288</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 17 Sep 2008 03:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-288</guid>
		<description>Also, what if an option is disabled?</description>
		<content:encoded><![CDATA[<p>Also, what if an option is disabled?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-287</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 16 Sep 2008 08:53:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-287</guid>
		<description>So say I have a javascript function that changes the selected option. How do i change the selected option?</description>
		<content:encoded><![CDATA[<p>So say I have a javascript function that changes the selected option. How do i change the selected option?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seungjin Kim</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-278</link>
		<dc:creator>Seungjin Kim</dc:creator>
		<pubDate>Thu, 04 Sep 2008 18:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-278</guid>
		<description>If you use this with multiple select tags, if you select something from a select tag, the other select tag's selected list item would have its selected class name taken off.

This is a bug, and a simeple fix is:

at line 221: $('li... =&#62; $(this).parent().find('li...

Thanks for the plugin!</description>
		<content:encoded><![CDATA[<p>If you use this with multiple select tags, if you select something from a select tag, the other select tag&#8217;s selected list item would have its selected class name taken off.</p>
<p>This is a bug, and a simeple fix is:</p>
<p>at line 221: $(&#8217;li&#8230; =&gt; $(this).parent().find(&#8217;li&#8230;</p>
<p>Thanks for the plugin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew B</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-273</link>
		<dc:creator>Matthew B</dc:creator>
		<pubDate>Tue, 02 Sep 2008 22:00:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-273</guid>
		<description>To setup the onchange event:
add this line of code to the setCurrent() function, just before the 
return true; line

$("#"+$input.attr('id').substring(0, $input.attr('id').length-6)).trigger('onchange'); 

it works for me in XP Firefox and XP IE7</description>
		<content:encoded><![CDATA[<p>To setup the onchange event:<br />
add this line of code to the setCurrent() function, just before the<br />
return true; line</p>
<p>$(&#8221;#&#8221;+$input.attr(&#8217;id&#8217;).substring(0, $input.attr(&#8217;id&#8217;).length-6)).trigger(&#8217;onchange&#8217;); </p>
<p>it works for me in XP Firefox and XP IE7</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moris</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-262</link>
		<dc:creator>Moris</dc:creator>
		<pubDate>Tue, 12 Aug 2008 00:35:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-262</guid>
		<description>I am trying to add an onchange event without success. I see above there is code to do do this but is not working in IE7 and if i use the code in Mozilla the dropdown box is not removed.

Can you assist so that I can use an onchange

I am not that familiar with this type of coding

Thanks

Moris</description>
		<content:encoded><![CDATA[<p>I am trying to add an onchange event without success. I see above there is code to do do this but is not working in IE7 and if i use the code in Mozilla the dropdown box is not removed.</p>
<p>Can you assist so that I can use an onchange</p>
<p>I am not that familiar with this type of coding</p>
<p>Thanks</p>
<p>Moris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerfried</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-257</link>
		<dc:creator>Gerfried</dc:creator>
		<pubDate>Mon, 28 Jul 2008 23:34:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-257</guid>
		<description>Clicks on the list only work propperly if you click on text. Can you implement {li}{span}linktext{/span}{/li} instead of {{li}linktext{/li} please? Then you can set "span {width:100%}" in the CSS.</description>
		<content:encoded><![CDATA[<p>Clicks on the list only work propperly if you click on text. Can you implement {li}{span}linktext{/span}{/li} instead of {{li}linktext{/li} please? Then you can set &#8220;span {width:100%}&#8221; in the CSS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miguel Moura</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-254</link>
		<dc:creator>Miguel Moura</dc:creator>
		<pubDate>Fri, 25 Jul 2008 19:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-254</guid>
		<description>It is very strange ... sometimes the Select style works some times it does not.
It was working even when I use the mouse ... then I refreshed the page and stopped working.

Any idea?</description>
		<content:encoded><![CDATA[<p>It is very strange &#8230; sometimes the Select style works some times it does not.<br />
It was working even when I use the mouse &#8230; then I refreshed the page and stopped working.</p>
<p>Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miguel Moura</title>
		<link>http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/#comment-253</link>
		<dc:creator>Miguel Moura</dc:creator>
		<pubDate>Fri, 25 Jul 2008 17:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.brainfault.com/?page_id=17#comment-253</guid>
		<description>Hello,

When I use a Current CSS Class as follows it works fine:
currentClass: 'selected'

If I caps the first letter, then it does not work:
currentClass: 'Selected'

And yes, I change my CSS Class from selected to Selected.

This is a really strange error.

Any idea why this happens?

Thanks,
Miguel</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>When I use a Current CSS Class as follows it works fine:<br />
currentClass: &#8217;selected&#8217;</p>
<p>If I caps the first letter, then it does not work:<br />
currentClass: &#8216;Selected&#8217;</p>
<p>And yes, I change my CSS Class from selected to Selected.</p>
<p>This is a really strange error.</p>
<p>Any idea why this happens?</p>
<p>Thanks,<br />
Miguel</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.475 seconds -->
