<?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: Making Better Select Elements with jQuery and CSS3</title>
	<atom:link href="http://tutorialzine.com/2010/11/better-select-jquery-css3/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Mon, 20 May 2013 02:06:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: bluet</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-80469</link>
		<dc:creator>bluet</dc:creator>
		<pubDate>Wed, 03 Apr 2013 21:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-80469</guid>
		<description><![CDATA[Great plugin. Just wondering how to make each of the list items a link to an external page?]]></description>
		<content:encoded><![CDATA[<p>Great plugin. Just wondering how to make each of the list items a link to an external page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-77701</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 28 Jan 2013 23:06:47 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-77701</guid>
		<description><![CDATA[I&#039;ve having trouble with the drop down li not being on top of other elements on the page.  I&#039;ve tried adding z-index to no avail.  This is true of other html/form elements as well as other selects created by this code.  It&#039;s kinda hard to select an option when it is under other select boxes.]]></description>
		<content:encoded><![CDATA[<p>I've having trouble with the drop down li not being on top of other elements on the page.  I've tried adding z-index to no avail.  This is true of other html/form elements as well as other selects created by this code.  It's kinda hard to select an option when it is under other select boxes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oxana</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-77192</link>
		<dc:creator>oxana</dc:creator>
		<pubDate>Wed, 02 Jan 2013 03:03:20 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-77192</guid>
		<description><![CDATA[Martin thanks for the code but how to connect the links that I want the choice of one shift on a link to another page. 2 - another etc]]></description>
		<content:encoded><![CDATA[<p>Martin thanks for the code but how to connect the links that I want the choice of one shift on a link to another page. 2 - another etc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: efx</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-76757</link>
		<dc:creator>efx</dc:creator>
		<pubDate>Mon, 17 Dec 2012 10:43:35 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-76757</guid>
		<description><![CDATA[For new versions of jQuery, selectedIndex is now a property, so you have to replace

&lt;pre&gt;
if(i==select.attr(&#039;selectedIndex&#039;)){
	selectBox.html(option.text());
}
&lt;/pre&gt;
with
&lt;pre&gt;
if(i==select.prop(&#039;selectedIndex&#039;)){
	selectBox.html(option.text());
}
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>For new versions of jQuery, selectedIndex is now a property, so you have to replace</p>
<pre>
if(i==select.attr('selectedIndex')){
	selectBox.html(option.text());
}
</pre>
<p>with</p>
<pre>
if(i==select.prop('selectedIndex')){
	selectBox.html(option.text());
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eddi</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-76331</link>
		<dc:creator>Eddi</dc:creator>
		<pubDate>Sat, 08 Dec 2012 16:04:18 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-76331</guid>
		<description><![CDATA[Martin thanks a lot for the Tutorial!
Ross thanks a lot for the advise. Got crazy about why it does not work, but no everything is fine...
thanks ;)]]></description>
		<content:encoded><![CDATA[<p>Martin thanks a lot for the Tutorial!<br />
Ross thanks a lot for the advise. Got crazy about why it does not work, but no everything is fine...<br />
thanks ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ross</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-74842</link>
		<dc:creator>Ross</dc:creator>
		<pubDate>Wed, 21 Nov 2012 09:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-74842</guid>
		<description><![CDATA[With the latest jquery (1.8.x) the combo is not visible. To make it visible change the javascript file with the following:

&lt;pre&gt;
var selectBoxContainer = $(&#039;&lt;div&gt;&#039;,{
		width		: select.outerWidth(),
		className: &#039;tzSelect&#039;,
		html		: &#039;&lt;div class=&quot;selectBox&quot;&gt;&lt;/div&gt;&#039;
	});

var dropDown = $(&#039;&lt;ul&gt;&#039;,{class:&#039;dropDown&#039;});
&lt;/pre&gt;

with this:

&lt;pre&gt;
var selectBoxContainer = $(&#039;&lt;div&gt;&#039;,{
		width		: select.outerWidth(),
		&#039;class&#039;		: &#039;tzSelect&#039;,
		html		: &#039;&lt;div class=&quot;selectBox&quot;&gt;&lt;/div&gt;&#039;
	});

	var dropDown = $(&#039;&lt;ul&gt;&#039;,{&#039;class&#039;:&#039;dropDown&#039;});
&lt;/pre&gt;

and

&lt;pre&gt;
if(i==select.attr(&#039;selectedIndex&#039;)){
	selectBox.html(option.text());
}
&lt;/pre&gt;

with this:

&lt;pre&gt;
if(i==select.find(&#039;option:selected&#039;).index()){
	selectBox.html(option.text());
}
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>With the latest jquery (1.8.x) the combo is not visible. To make it visible change the javascript file with the following:</p>
<pre>
var selectBoxContainer = $('&lt;div&gt;',{
		width		: select.outerWidth(),
		className: 'tzSelect',
		html		: '&lt;div class=&quot;selectBox&quot;&gt;&lt;/div&gt;'
	});

var dropDown = $('&lt;ul&gt;',{class:'dropDown'});
</pre>
<p>with this:</p>
<pre>
var selectBoxContainer = $('&lt;div&gt;',{
		width		: select.outerWidth(),
		'class'		: 'tzSelect',
		html		: '&lt;div class=&quot;selectBox&quot;&gt;&lt;/div&gt;'
	});

	var dropDown = $('&lt;ul&gt;',{'class':'dropDown'});
</pre>
<p>and</p>
<pre>
if(i==select.attr('selectedIndex')){
	selectBox.html(option.text());
}
</pre>
<p>with this:</p>
<pre>
if(i==select.find('option:selected').index()){
	selectBox.html(option.text());
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jenna</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-45212</link>
		<dc:creator>Jenna</dc:creator>
		<pubDate>Sun, 07 Oct 2012 19:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-45212</guid>
		<description><![CDATA[Have you found a way to make this successful. I was wondering if we could create the drop down selection boxes to sit side by side instead of on top of other one. and that the drop down boxes would work.]]></description>
		<content:encoded><![CDATA[<p>Have you found a way to make this successful. I was wondering if we could create the drop down selection boxes to sit side by side instead of on top of other one. and that the drop down boxes would work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LP</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-41711</link>
		<dc:creator>LP</dc:creator>
		<pubDate>Fri, 28 Sep 2012 17:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-41711</guid>
		<description><![CDATA[can anyone turn this code into a jquery plugin??, 
i tried to do it, but i couldn&#039;t...

it would be absolutely great! =)]]></description>
		<content:encoded><![CDATA[<p>can anyone turn this code into a jquery plugin??,<br />
i tried to do it, but i couldn't...</p>
<p>it would be absolutely great! =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linas</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-41615</link>
		<dc:creator>Linas</dc:creator>
		<pubDate>Thu, 20 Sep 2012 18:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-41615</guid>
		<description><![CDATA[Yes, facing the same issue. It&#039;s because of the variable names in the library, need to catch those and replace with old ones, but no luck yet.]]></description>
		<content:encoded><![CDATA[<p>Yes, facing the same issue. It's because of the variable names in the library, need to catch those and replace with old ones, but no luck yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linas</title>
		<link>http://tutorialzine.com/2010/11/better-select-jquery-css3/#comment-41614</link>
		<dc:creator>Linas</dc:creator>
		<pubDate>Thu, 20 Sep 2012 18:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=1248#comment-41614</guid>
		<description><![CDATA[Great! Works like a charm!]]></description>
		<content:encoded><![CDATA[<p>Great! Works like a charm!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 286/288 objects using apc
Content Delivery Network via cdn.tutorialzine.com

 Served from: tutorialzine.com @ 2013-05-21 19:39:57 by W3 Total Cache -->