<?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 Ilia Draznin Online</title>
	<atom:link href="http://iliadraznin.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://iliadraznin.com</link>
	<description>javascript • css • html5 &#38; ajax • art &#38; design • technology</description>
	<lastBuildDate>Thu, 22 Apr 2010 08:54:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Simple jQuery placeholder script for input fields by gren</title>
		<link>http://iliadraznin.com/2010/03/simple-jquery-placeholder-script-input-fields/comment-page-1/#comment-318</link>
		<dc:creator>gren</dc:creator>
		<pubDate>Thu, 22 Apr 2010 08:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=166#comment-318</guid>
		<description>Thanks for the script, really useful.

the test 
if ($.browser.webkit) return false;
doesn&#039;t work (and $.browser is deprecated).

So, I propose another test :

if(&#039;placeholder&#039; in document.createElement(&#039;input&#039;)) return false;

It works 
-on Firefox (placeholder not implemented by ff3.6 and test evaluated to false) 
-on Chrome and Safari (placeholder implemented and test evaluated to true)
-on IE6+ (placeholder not implemented and test evaluated to false)


see also http://diveintohtml5.org/detect.html#input-placeholder

Regards,
gren</description>
		<content:encoded><![CDATA[<p>Thanks for the script, really useful.</p>
<p>the test<br />
if ($.browser.webkit) return false;<br />
doesn’t work (and $.browser is deprecated).</p>
<p>So, I propose another test :</p>
<p>if(‘placeholder’ in document.createElement(‘input’)) return false;</p>
<p>It works<br />
–on Firefox (placeholder not implemented by ff3.6 and test evaluated to false)<br />
–on Chrome and Safari (placeholder implemented and test evaluated to true)<br />
–on IE6+ (placeholder not implemented and test evaluated to false)</p>
<p>see also <a href="http://diveintohtml5.org/detect.html#input-placeholder" rel="nofollow">http://diveintohtml5.org/detect.html#input-placeholder</a></p>
<p>Regards,<br />
gren</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple jQuery placeholder script for input fields by Ilia</title>
		<link>http://iliadraznin.com/2010/03/simple-jquery-placeholder-script-input-fields/comment-page-1/#comment-317</link>
		<dc:creator>Ilia</dc:creator>
		<pubDate>Sun, 11 Apr 2010 22:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=166#comment-317</guid>
		<description>Great idea Brad, that gives me an idea for an even simpler solution.

The trouble with checking color is that now javascript depends on CSS, unless you go through the trouble of extracting the color value from the .placeholder class (granted, with jquery it&#039;s not much trouble, but more than necessary).

Instead of checking color we can simply check the class itself. If it&#039;s placeholder then we go ahead and clear the field (on focus), otherwise don&#039;t.

In fact, if we have that then the value doesn&#039;t need to be checked at all, it can be whatever, but if the user put it there then it&#039;s not going to have &quot;placeholder&quot; class and so is not cleared on focus.</description>
		<content:encoded><![CDATA[<p>Great idea Brad, that gives me an idea for an even simpler solution.</p>
<p>The trouble with checking color is that now javascript depends on CSS, unless you go through the trouble of extracting the color value from the .placeholder class (granted, with jquery it’s not much trouble, but more than necessary).</p>
<p>Instead of checking color we can simply check the class itself. If it’s placeholder then we go ahead and clear the field (on focus), otherwise don’t.</p>
<p>In fact, if we have that then the value doesn’t need to be checked at all, it can be whatever, but if the user put it there then it’s not going to have “placeholder” class and so is not cleared on focus.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple jQuery placeholder script for input fields by Brad</title>
		<link>http://iliadraznin.com/2010/03/simple-jquery-placeholder-script-input-fields/comment-page-1/#comment-316</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Sun, 11 Apr 2010 21:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=166#comment-316</guid>
		<description>You can also check the current color of the text to see if it needs to be erased. If it&#039;s gray, it won&#039;t be erased even if it&#039;s the same as the placeholder text.</description>
		<content:encoded><![CDATA[<p>You can also check the current color of the text to see if it needs to be erased. If it’s gray, it won’t be erased even if it’s the same as the placeholder text.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using CSS3 @font-face to “fake” multiple font weights by Tweets that mention Using CSS3 @font-face to “fake” multiple font weights - IliaDraznin.com -- Topsy.com</title>
		<link>http://iliadraznin.com/2009/07/css3-font-face-multiple-weights/comment-page-1/#comment-110</link>
		<dc:creator>Tweets that mention Using CSS3 @font-face to “fake” multiple font weights - IliaDraznin.com -- Topsy.com</dc:creator>
		<pubDate>Wed, 02 Sep 2009 20:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=28#comment-110</guid>
		<description>[...] this page was mentioned by Galba (@galbajunior), Galba (@galbajunior), Simone Economo (@ekoes), agent_x (@agent_x), henryhamon (@henryhamon) and others. [...]</description>
		<content:encoded><![CDATA[<p>[…] this page was mentioned by Galba (@galbajunior), Galba (@galbajunior), Simone Economo (@ekoes), agent_x (@agent_x), henryhamon (@henryhamon) and others. […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using CSS3 @font-face to “fake” multiple font weights by stk</title>
		<link>http://iliadraznin.com/2009/07/css3-font-face-multiple-weights/comment-page-1/#comment-89</link>
		<dc:creator>stk</dc:creator>
		<pubDate>Fri, 28 Aug 2009 16:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=28#comment-89</guid>
		<description>ilia - It is theoretically possible to utilize this technique cross-browser, though it &lt;em&gt;may require&lt;/em&gt; specifying font-family, rather than font-weight.

Here&#039;s how: http://randsco.com/index.php/2009/07/04/cross_browser_font_embedding</description>
		<content:encoded><![CDATA[<p>ilia — It is theoretically possible to utilize this technique cross-browser, though it <em>may require</em> specifying font-family, rather than font-weight.</p>
<p>Here’s how: <a href="http://randsco.com/index.php/2009/07/04/cross_browser_font_embedding" rel="nofollow">http://randsco.com/index.php/2009/07/04/cross_browser_font_embedding</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mindblowing Photography — RAZOOMA.net by Venkateshhh</title>
		<link>http://iliadraznin.com/2009/07/mindblowing-photography-razooma-net/comment-page-1/#comment-40</link>
		<dc:creator>Venkateshhh</dc:creator>
		<pubDate>Mon, 10 Aug 2009 02:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=45#comment-40</guid>
		<description>I have came across just like u. After seeing DA i have visited his site. Now out of curiosity i googled his name i came across ur post. I liked the way u described his art !!! Yes he is master piece !</description>
		<content:encoded><![CDATA[<p>I have came across just like u. After seeing DA i have visited his site. Now out of curiosity i googled his name i came across ur post. I liked the way u described his art !!! Yes he is master piece !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTC Dream and Magic are $79.99 on Rogers by Dan</title>
		<link>http://iliadraznin.com/2009/08/htc-dream-magic-79-dollars-rogers/comment-page-1/#comment-37</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sun, 09 Aug 2009 02:01:48 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=107#comment-37</guid>
		<description>At that price not only should you get one for yourself, you should get one for yout eniter family too. WINK!*</description>
		<content:encoded><![CDATA[<p>At that price not only should you get one for yourself, you should get one for yout eniter family too. WINK!*</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Good Ol’ Games by susan</title>
		<link>http://iliadraznin.com/2009/07/good-ol-games/comment-page-1/#comment-35</link>
		<dc:creator>susan</dc:creator>
		<pubDate>Tue, 04 Aug 2009 06:02:47 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=6#comment-35</guid>
		<description>I recently came across your blog and have been reading along. I thought I would leave my first comment. I don&#039;t know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often.

Susan</description>
		<content:encoded><![CDATA[<p>I recently came across your blog and have been reading along. I thought I would leave my first comment. I don’t know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often.</p>
<p>Susan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using CSS3 @font-face to “fake” multiple font weights by Using CSS3 @font-face to “fake” multiple font weights – IliaDraznin.com</title>
		<link>http://iliadraznin.com/2009/07/css3-font-face-multiple-weights/comment-page-1/#comment-24</link>
		<dc:creator>Using CSS3 @font-face to “fake” multiple font weights – IliaDraznin.com</dc:creator>
		<pubDate>Fri, 31 Jul 2009 15:04:12 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=28#comment-24</guid>
		<description>[...] View original post here: Using CSS3 @font-face to “fake” multiple font weights – IliaDraznin.com [...]</description>
		<content:encoded><![CDATA[<p>[…] View original post here: Using CSS3 @font-face to “fake” multiple font weights – IliaDraznin.com […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mindblowing Photography — RAZOOMA.net by FreelancerCrowd</title>
		<link>http://iliadraznin.com/2009/07/mindblowing-photography-razooma-net/comment-page-1/#comment-23</link>
		<dc:creator>FreelancerCrowd</dc:creator>
		<pubDate>Mon, 27 Jul 2009 07:44:16 +0000</pubDate>
		<guid isPermaLink="false">http://iliadraznin.com/?p=45#comment-23</guid>
		<description>That&#039;s the master of speed and time!</description>
		<content:encoded><![CDATA[<p>That’s the master of speed and time!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
