<?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 for Andrea Cima Serniotti</title>
	<atom:link href="http://www.madeincima.eu/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.madeincima.eu</link>
	<description>A brilliant blog about web design and development</description>
	<lastBuildDate>Sat, 10 Jul 2010 14:44:28 +0200</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on jQuery plugin: Easy List Splitter by Mike Knowles</title>
		<link>http://www.madeincima.eu/blog/jquery-plugin-easy-list-splitter/comment-page-1/#comment-202</link>
		<dc:creator>Mike Knowles</dc:creator>
		<pubDate>Sat, 10 Jul 2010 14:44:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=307#comment-202</guid>
		<description>Exactly what I needed. The content even wraps as expected when an individual li exceeds the defined width. Thank you!</description>
		<content:encoded><![CDATA[<p>Exactly what I needed. The content even wraps as expected when an individual li exceeds the defined width. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery plugin: Easy List Splitter by Sven</title>
		<link>http://www.madeincima.eu/blog/jquery-plugin-easy-list-splitter/comment-page-1/#comment-200</link>
		<dc:creator>Sven</dc:creator>
		<pubDate>Wed, 09 Jun 2010 08:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=307#comment-200</guid>
		<description>Great plugin, but when will the nested list feature be implemented? I need it soon. :)</description>
		<content:encoded><![CDATA[<p>Great plugin, but when will the nested list feature be implemented? I need it soon. <img src='http://www.madeincima.eu/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery tutorial: external links by Paulo</title>
		<link>http://www.madeincima.eu/blog/jquery-tutorial-external-links/comment-page-1/#comment-199</link>
		<dc:creator>Paulo</dc:creator>
		<pubDate>Sun, 06 Jun 2010 11:10:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=192#comment-199</guid>
		<description>The jQuery you used to find all external links is a good reference! I started using it for a project I&#039;m doing, but caught some imperfections. For example, take the following EXTERNAL link:

http://www.externaldomain.com/?q=mydomain.com

Your code treats it as an INTERNAL link since your logic searches for &#039;your domain&#039; anywhere in the href value (since you use the &#039;asterisk equals&#039; operator). To be more robust you would have to find links that start with it by using &#039;carrot equals&#039; operator:

// needs to be repeated for &#039;https://&#039;
$(&quot;a[href^=&#039;http://&#039;]:not([href^=&#039;http://&quot;+location.hostname+&quot;&#039;]));

The code above works almost 100% of the time, but the domain for many sites includes the &#039;www.&#039; prefix and some don&#039;t. So if a link in your body was: &quot;http://www.mydomain.com/page.html&quot; but the address bar of your browser read: &quot;http://mydomain.com&quot;, then it would not match my jQuery above. So we need to be even more precise:

// again, needs to be repeated for &#039;https://&#039;
$(&quot;a[href^=&#039;http://&#039;]:not([href^=&#039;http://&quot;+location.hostname+&quot;&#039;]:not([href^=&#039;http://www.&quot;+location.hostname+&quot;&#039;]));

Personally, this is getting a bit too long, so I preferred to use regular expressions:

// for every link
$(&quot;a&quot;).each(function () {
	var href = $(this).attr(&quot;href&quot;);

	// remove the &#039;www.&#039; prefix from the href value (if it exists)
	var domain = location.hostname.replace(/^(www\.)?/, &quot;&quot;);

	// set up a regular expression that sees if a string starts with http[s]://[www.]mydomain.com
	var re = new RegExp(&quot;^https?:\\/\\/(www.)?&quot; + domain);

	// guaranteed to be an external link
	if (!re.test(href)) {
		$(this).attr(&quot;target&quot;, &quot;_blank&quot;).attr(&quot;title&quot;, &quot;Opens a new window&quot;);
	}
});</description>
		<content:encoded><![CDATA[<p>The jQuery you used to find all external links is a good reference! I started using it for a project I&#8217;m doing, but caught some imperfections. For example, take the following EXTERNAL link:</p>
<p><a href="http://www.externaldomain.com/?q=mydomain.com" rel="nofollow">http://www.externaldomain.com/?q=mydomain.com</a></p>
<p>Your code treats it as an INTERNAL link since your logic searches for &#8216;your domain&#8217; anywhere in the href value (since you use the &#8216;asterisk equals&#8217; operator). To be more robust you would have to find links that start with it by using &#8216;carrot equals&#8217; operator:</p>
<p>// needs to be repeated for &#8216;https://&#8217;<br />
$(&#8220;a[href^='http://']:not([href^='http://"+location.hostname+"']));</p>
<p>The code above works almost 100% of the time, but the domain for many sites includes the &#8216;www.&#8217; prefix and some don&#8217;t. So if a link in your body was: &#8220;http://www.mydomain.com/page.html&#8221; but the address bar of your browser read: &#8220;http://mydomain.com&#8221;, then it would not match my jQuery above. So we need to be even more precise:</p>
<p>// again, needs to be repeated for &#8216;https://&#8217;<br />
$(&#8220;a[href^='http://']:not([href^='http://"+location.hostname+"']:not([href^='http://www."+location.hostname+"']));</p>
<p>Personally, this is getting a bit too long, so I preferred to use regular expressions:</p>
<p>// for every link<br />
$(&#8220;a&#8221;).each(function () {<br />
	var href = $(this).attr(&#8220;href&#8221;);</p>
<p>	// remove the &#8216;www.&#8217; prefix from the href value (if it exists)<br />
	var domain = location.hostname.replace(/^(www\.)?/, &#8220;&#8221;);</p>
<p>	// set up a regular expression that sees if a string starts with http[s]://[www.]mydomain.com<br />
	var re = new RegExp(&#8220;^https?:\\/\\/(www.)?&#8221; + domain);</p>
<p>	// guaranteed to be an external link<br />
	if (!re.test(href)) {<br />
		$(this).attr(&#8220;target&#8221;, &#8220;_blank&#8221;).attr(&#8220;title&#8221;, &#8220;Opens a new window&#8221;);<br />
	}<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photoshop tutorial: patterns by Andrija Markovic</title>
		<link>http://www.madeincima.eu/blog/photoshop-tutorial-patterns/comment-page-1/#comment-190</link>
		<dc:creator>Andrija Markovic</dc:creator>
		<pubDate>Mon, 31 May 2010 19:26:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=295#comment-190</guid>
		<description>So, I don&#039;t understand, how are you going to cut that background pattern for the web site? I mean it&#039;s going to be one very big image, right?</description>
		<content:encoded><![CDATA[<p>So, I don&#8217;t understand, how are you going to cut that background pattern for the web site? I mean it&#8217;s going to be one very big image, right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery plugin: Easy List Splitter by Jeremy Carlson</title>
		<link>http://www.madeincima.eu/blog/jquery-plugin-easy-list-splitter/comment-page-1/#comment-151</link>
		<dc:creator>Jeremy Carlson</dc:creator>
		<pubDate>Tue, 25 May 2010 15:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=307#comment-151</guid>
		<description>This is very nice. I went looking for something along these lines. Another plugin weighed in @ 12k MINIMIZED. Looked like 2x or 3x the code this has. Your code looks short and sweet, and I&#039;m using it - thanks!</description>
		<content:encoded><![CDATA[<p>This is very nice. I went looking for something along these lines. Another plugin weighed in @ 12k MINIMIZED. Looked like 2x or 3x the code this has. Your code looks short and sweet, and I&#8217;m using it &#8211; thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery plugin: Easy List Splitter by Emran Hasan</title>
		<link>http://www.madeincima.eu/blog/jquery-plugin-easy-list-splitter/comment-page-1/#comment-108</link>
		<dc:creator>Emran Hasan</dc:creator>
		<pubDate>Sat, 15 May 2010 13:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=307#comment-108</guid>
		<description>Hi There,

Nice plugin. I had a need of using it to split a long list of form elements based on dl-dt-dd markup. I was able to achieve that pretty easily - thanks to your clear and easy to follow code. I&#039;m planning to post that as a short blog in my site with a link to this. Lemme know if that&#039;s okay.

Thanks

Emran</description>
		<content:encoded><![CDATA[<p>Hi There,</p>
<p>Nice plugin. I had a need of using it to split a long list of form elements based on dl-dt-dd markup. I was able to achieve that pretty easily &#8211; thanks to your clear and easy to follow code. I&#8217;m planning to post that as a short blog in my site with a link to this. Lemme know if that&#8217;s okay.</p>
<p>Thanks</p>
<p>Emran</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery plugin: Easy List Splitter by Viki Pandit</title>
		<link>http://www.madeincima.eu/blog/jquery-plugin-easy-list-splitter/comment-page-1/#comment-104</link>
		<dc:creator>Viki Pandit</dc:creator>
		<pubDate>Fri, 14 May 2010 19:44:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=307#comment-104</guid>
		<description>Nice Work, but I didn&#039;t get the idea of using Javascript when a minimal css would suffice?

Thanks,
viki</description>
		<content:encoded><![CDATA[<p>Nice Work, but I didn&#8217;t get the idea of using Javascript when a minimal css would suffice?</p>
<p>Thanks,<br />
viki</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery plugin: Easy List Splitter by Fero</title>
		<link>http://www.madeincima.eu/blog/jquery-plugin-easy-list-splitter/comment-page-1/#comment-89</link>
		<dc:creator>Fero</dc:creator>
		<pubDate>Tue, 11 May 2010 16:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=307#comment-89</guid>
		<description>Please delete previous comment, I should really think first and then click enter. It works like dream. Thanks</description>
		<content:encoded><![CDATA[<p>Please delete previous comment, I should really think first and then click enter. It works like dream. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery plugin: Easy List Splitter by Fero</title>
		<link>http://www.madeincima.eu/blog/jquery-plugin-easy-list-splitter/comment-page-1/#comment-88</link>
		<dc:creator>Fero</dc:creator>
		<pubDate>Tue, 11 May 2010 15:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=307#comment-88</guid>
		<description>I think it is not working with 1.4.2 jquery. Only think I do to test is maki list and use your script with #defined and it splits into 2 parts but it wont move right to be on same horizont. Am I doing something wrong ?</description>
		<content:encoded><![CDATA[<p>I think it is not working with 1.4.2 jquery. Only think I do to test is maki list and use your script with #defined and it splits into 2 parts but it wont move right to be on same horizont. Am I doing something wrong ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery plugin: Easy List Splitter by Jason</title>
		<link>http://www.madeincima.eu/blog/jquery-plugin-easy-list-splitter/comment-page-1/#comment-87</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 11 May 2010 12:34:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeincima.eu/?p=307#comment-87</guid>
		<description>My issue now is that I am unable to filter the list items using any jquery filter by class. I&#039;m assuming this is because your plugin splits the lists into seperate lists?

any workaround?</description>
		<content:encoded><![CDATA[<p>My issue now is that I am unable to filter the list items using any jquery filter by class. I&#8217;m assuming this is because your plugin splits the lists into seperate lists?</p>
<p>any workaround?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
