<?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>Commenti per ilDavid</title>
	<atom:link href="http://www.ildavid.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ildavid.com</link>
	<description>la mia cassetta degli attrezzi</description>
	<lastBuildDate>Mon, 08 Aug 2011 09:43:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Commenti su QuickNews.it di ilDavid</title>
		<link>http://www.ildavid.com/dblog/siti/2009-17/quicknews-it/comment-page-1/#comment-650</link>
		<dc:creator>ilDavid</dc:creator>
		<pubDate>Mon, 08 Aug 2011 09:43:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?p=17#comment-650</guid>
		<description>Thanks! 
No, the graphic was designed by my collegue http://www.mattiamoretto.com/</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
No, the graphic was designed by my collegue <a href="http://www.mattiamoretto.com/" rel="nofollow">http://www.mattiamoretto.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su Nascondere del testo a Google di Davide</title>
		<link>http://www.ildavid.com/dblog/seo/2010-121/nascondere-del-testo-a-google/comment-page-1/#comment-172</link>
		<dc:creator>Davide</dc:creator>
		<pubDate>Tue, 05 Oct 2010 17:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?p=121#comment-172</guid>
		<description>uhmmmmm...
Mi sa che l&#039;esperimento non è riuscito.

Goggle ha indicizzato il testo contenuto nell&#039;iframe.

Prova ad effettuare la ricerca &quot;site:www.ildavid.com&quot; su Google e quella pagina compare a pagina 8 del risultato della ricerca.</description>
		<content:encoded><![CDATA[<p>uhmmmmm&#8230;<br />
Mi sa che l&#8217;esperimento non è riuscito.</p>
<p>Goggle ha indicizzato il testo contenuto nell&#8217;iframe.</p>
<p>Prova ad effettuare la ricerca &#8220;site:www.ildavid.com&#8221; su Google e quella pagina compare a pagina 8 del risultato della ricerca.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su SelectCustomizer di ilDavid</title>
		<link>http://www.ildavid.com/selectcustomizer/comment-page-1/#comment-147</link>
		<dc:creator>ilDavid</dc:creator>
		<pubDate>Mon, 06 Sep 2010 23:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?page_id=97#comment-147</guid>
		<description>Hi Fwitz,
I came across this problem too, and here&#039;s the solution
&lt;code&gt;
$.fn.SelectCustomizer = function(){
    // Select Customizer jQuery plug-in
	// based on customselect by Ace Web Design http://www.adelaidewebdesigns.com/2008/08/01/adelaide-web-designs-releases-customselect-with-icons/
	// modified by David Vian http://www.ildavid.com/dblog
    // 1.2: added the selected option
    return this.each(function(){
        var obj = $(this);
		var name = obj.attr(&#039;id&#039;);
		var id_slc_options = name+&#039;_options&#039;;
		var id_icn_select = name+&#039;_iconselect&#039;;
		var id_holder = name+&#039;_holder&#039;;
		var custom_select = name+&#039;_customselect&#039;;
        var select_title = obj.find(&#039;option[selected]&#039;).html();
        obj.after(&quot; &quot;);
        obj.find(&#039;option&#039;).each(function(i){
            var thisisselected = $(this).attr(&#039;selected&#039;)?&#039; selectedclass&#039;:&#039;&#039;;
            $(&quot;#&quot;+id_slc_options).append(&quot;&quot; + $(this).html() + &quot;&quot;);
        });
        obj.before(&quot;&quot; + select_title + &quot; &quot;).remove();
        $(&quot;#&quot;+id_icn_select).click(function(){
            $(&quot;#&quot;+id_holder).slideToggle(200);
        });
        $(&quot;#&quot;+id_holder).append($(&quot;#&quot;+id_slc_options)[0]);
        $(&quot;#&quot;+id_holder+ &quot; .selectitems&quot;).mouseover(function(){
            $(this).addClass(&quot;hoverclass&quot;);
        });
        $(&quot;#&quot;+id_holder+&quot; .selectitems&quot;).mouseout(function(){
            $(this).removeClass(&quot;hoverclass&quot;);
        });
        $(&quot;#&quot;+id_holder+&quot; .selectitems&quot;).click(function(){
            $(&quot;#&quot;+id_holder+&quot; .selectedclass&quot;).removeClass(&quot;selectedclass&quot;);
            $(this).addClass(&quot;selectedclass&quot;);
            var thisselection = $(this).html();
            $(&quot;#&quot;+custom_select).val(this.title);
            $(&quot;#&quot;+id_icn_select).html(thisselection);
            $(&quot;#&quot;+id_holder).slideToggle(250)
        });
    });
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi Fwitz,<br />
I came across this problem too, and here&#8217;s the solution<br />
<code><br />
$.fn.SelectCustomizer = function(){<br />
    // Select Customizer jQuery plug-in<br />
	// based on customselect by Ace Web Design <a href="http://www.adelaidewebdesigns.com/2008/08/01/adelaide-web-designs-releases-customselect-with-icons/" rel="nofollow">http://www.adelaidewebdesigns.com/2008/08/01/adelaide-web-designs-releases-customselect-with-icons/</a><br />
	// modified by David Vian <a href="http://www.ildavid.com/dblog" rel="nofollow">http://www.ildavid.com/dblog</a><br />
    // 1.2: added the selected option<br />
    return this.each(function(){<br />
        var obj = $(this);<br />
		var name = obj.attr('id');<br />
		var id_slc_options = name+'_options';<br />
		var id_icn_select = name+'_iconselect';<br />
		var id_holder = name+'_holder';<br />
		var custom_select = name+'_customselect';<br />
        var select_title = obj.find('option[selected]').html();<br />
        obj.after(" ");<br />
        obj.find('option').each(function(i){<br />
            var thisisselected = $(this).attr('selected')?' selectedclass':'';<br />
            $("#"+id_slc_options).append("" + $(this).html() + "");<br />
        });<br />
        obj.before("" + select_title + " ").remove();<br />
        $("#"+id_icn_select).click(function(){<br />
            $("#"+id_holder).slideToggle(200);<br />
        });<br />
        $("#"+id_holder).append($("#"+id_slc_options)[0]);<br />
        $("#"+id_holder+ " .selectitems").mouseover(function(){<br />
            $(this).addClass("hoverclass");<br />
        });<br />
        $("#"+id_holder+" .selectitems").mouseout(function(){<br />
            $(this).removeClass("hoverclass");<br />
        });<br />
        $("#"+id_holder+" .selectitems").click(function(){<br />
            $("#"+id_holder+" .selectedclass").removeClass("selectedclass");<br />
            $(this).addClass("selectedclass");<br />
            var thisselection = $(this).html();<br />
            $("#"+custom_select).val(this.title);<br />
            $("#"+id_icn_select).html(thisselection);<br />
            $("#"+id_holder).slideToggle(250)<br />
        });<br />
    });<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su SelectCustomizer di Fwitz</title>
		<link>http://www.ildavid.com/selectcustomizer/comment-page-1/#comment-144</link>
		<dc:creator>Fwitz</dc:creator>
		<pubDate>Tue, 31 Aug 2010 16:27:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?page_id=97#comment-144</guid>
		<description>i ask this because even though the code has select=selected, the select list is still showing &quot;select a city&quot; by default...</description>
		<content:encoded><![CDATA[<p>i ask this because even though the code has select=selected, the select list is still showing &#8220;select a city&#8221; by default&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su SelectCustomizer di Fwitz</title>
		<link>http://www.ildavid.com/selectcustomizer/comment-page-1/#comment-143</link>
		<dc:creator>Fwitz</dc:creator>
		<pubDate>Tue, 31 Aug 2010 16:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?page_id=97#comment-143</guid>
		<description>Hi, this is some very nice work, but is there a way to pre-select one of the values? so you can pre-fill a form for example.</description>
		<content:encoded><![CDATA[<p>Hi, this is some very nice work, but is there a way to pre-select one of the values? so you can pre-fill a form for example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su SelectCustomizer di ilDavid</title>
		<link>http://www.ildavid.com/selectcustomizer/comment-page-1/#comment-101</link>
		<dc:creator>ilDavid</dc:creator>
		<pubDate>Mon, 21 Jun 2010 09:09:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?page_id=97#comment-101</guid>
		<description>Fixed zip url. Thx</description>
		<content:encoded><![CDATA[<p>Fixed zip url. Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su SelectCustomizer di FeRD</title>
		<link>http://www.ildavid.com/selectcustomizer/comment-page-1/#comment-91</link>
		<dc:creator>FeRD</dc:creator>
		<pubDate>Tue, 15 Jun 2010 04:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?page_id=97#comment-91</guid>
		<description>...Unfortunately, that download link is also broken. I take it back, sorry fiuz. :)</description>
		<content:encoded><![CDATA[<p>&#8230;Unfortunately, that download link is also broken. I take it back, sorry fiuz. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su SelectCustomizer di FeRD</title>
		<link>http://www.ildavid.com/selectcustomizer/comment-page-1/#comment-90</link>
		<dc:creator>FeRD</dc:creator>
		<pubDate>Tue, 15 Jun 2010 04:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?page_id=97#comment-90</guid>
		<description>@fiuz: That&#039;s probably why there&#039;s a download link (as a zip file) right above that code box!</description>
		<content:encoded><![CDATA[<p>@fiuz: That&#8217;s probably why there&#8217;s a download link (as a zip file) right above that code box!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su SelectCustomizer di fiuz</title>
		<link>http://www.ildavid.com/selectcustomizer/comment-page-1/#comment-50</link>
		<dc:creator>fiuz</dc:creator>
		<pubDate>Mon, 29 Mar 2010 02:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?page_id=97#comment-50</guid>
		<description>um ok, the code box prints wrong the \ &quot; and become not copiable.</description>
		<content:encoded><![CDATA[<p>um ok, the code box prints wrong the \ &#8221; and become not copiable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commenti su SelectCustomizer di fiuz</title>
		<link>http://www.ildavid.com/selectcustomizer/comment-page-1/#comment-49</link>
		<dc:creator>fiuz</dc:creator>
		<pubDate>Mon, 29 Mar 2010 02:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ildavid.com/?page_id=97#comment-49</guid>
		<description>hey nice, but seems to be an error on line 12 and can&#039;t open the options :/</description>
		<content:encoded><![CDATA[<p>hey nice, but seems to be an error on line 12 and can&#8217;t open the options :/</p>
]]></content:encoded>
	</item>
</channel>
</rss>

