<?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: iPhone-like password fields using jQuery</title>
	<atom:link href="http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 13:12:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: madn</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-51969</link>
		<dc:creator>madn</dc:creator>
		<pubDate>Fri, 23 Dec 2011 06:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-51969</guid>
		<description>not working with other jquery versions</description>
		<content:encoded><![CDATA[<p>not working with other jquery versions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jed</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-51928</link>
		<dc:creator>Jed</dc:creator>
		<pubDate>Fri, 02 Sep 2011 08:32:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-51928</guid>
		<description>Thank you very much. Just what I need for experiment.</description>
		<content:encoded><![CDATA[<p>Thank you very much. Just what I need for experiment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keith</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-51927</link>
		<dc:creator>keith</dc:creator>
		<pubDate>Wed, 31 Aug 2011 00:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-51927</guid>
		<description>and for good measure - should you have several related layers
click event
 $(&#039;#yourField&#039;).click(function() {
 $(&#039;input:password&#039;).dPassword();
});</description>
		<content:encoded><![CDATA[<p>and for good measure &#8211; should you have several related layers<br />
click event<br />
 $(&#8216;#yourField&#8217;).click(function() {<br />
 $(&#8216;input:password&#8217;).dPassword();<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keith</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-51926</link>
		<dc:creator>keith</dc:creator>
		<pubDate>Tue, 30 Aug 2011 23:57:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-51926</guid>
		<description>Thanks for the simple plug-in - works great!

One thing I noticed was that if you cleared a required field and fired validation the masking stopped working (FF6x). So I noticed this corrects that (create another blur event - to reapply)
 $(&#039;#YourField&#039;).blur(function() {
 $(&#039;input:password&#039;).dPassword();
});</description>
		<content:encoded><![CDATA[<p>Thanks for the simple plug-in &#8211; works great!</p>
<p>One thing I noticed was that if you cleared a required field and fired validation the masking stopped working (FF6x). So I noticed this corrects that (create another blur event &#8211; to reapply)<br />
 $(&#8216;#YourField&#8217;).blur(function() {<br />
 $(&#8216;input:password&#8217;).dPassword();<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Ullrich</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-51825</link>
		<dc:creator>Stefan Ullrich</dc:creator>
		<pubDate>Tue, 11 Jan 2011 15:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-51825</guid>
		<description>Acutally, we got many comments here, but due to timing issues on our side, there will be no update in the near future. Sorry!</description>
		<content:encoded><![CDATA[<p>Acutally, we got many comments here, but due to timing issues on our side, there will be no update in the near future. Sorry!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-51824</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Tue, 11 Jan 2011 15:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-51824</guid>
		<description>Nice work.

I&#039;d like to report some issue with the firefox integrated password manager. When there are multiple passwords stored for the same site, the password will be entered from firefox after selecting the corresponding username. The password is entered in the password-field but not in the replacement input field.

Hope for a fix.</description>
		<content:encoded><![CDATA[<p>Nice work.</p>
<p>I&#8217;d like to report some issue with the firefox integrated password manager. When there are multiple passwords stored for the same site, the password will be entered from firefox after selecting the corresponding username. The password is entered in the password-field but not in the replacement input field.</p>
<p>Hope for a fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-51778</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Tue, 28 Dec 2010 22:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-51778</guid>
		<description>The reader &quot;Dan&quot; had some comments on the idea of changing how a password field should be seen, and he was very adamant on keeping the status quot. 

I disagree ... the masked password field is a hold out from another era. We as developers need to guide users into using what is best for them. Also, if you&#039;ve done any kind of usability studies you&#039;ll see that most web users are not tech savvy and are frustrated with not knowing if they put in one password or another.  The phone style password mask is a great compromise from a full mask to a plain text box, especially with more and more of those non-tech savvy users using phones and getting used to them. It makes entering a password easier and more accurate, which will make that user more likely to come back to your site. That alone is worth the change ...</description>
		<content:encoded><![CDATA[<p>The reader &#8220;Dan&#8221; had some comments on the idea of changing how a password field should be seen, and he was very adamant on keeping the status quot. </p>
<p>I disagree &#8230; the masked password field is a hold out from another era. We as developers need to guide users into using what is best for them. Also, if you&#8217;ve done any kind of usability studies you&#8217;ll see that most web users are not tech savvy and are frustrated with not knowing if they put in one password or another.  The phone style password mask is a great compromise from a full mask to a plain text box, especially with more and more of those non-tech savvy users using phones and getting used to them. It makes entering a password easier and more accurate, which will make that user more likely to come back to your site. That alone is worth the change &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-51774</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Tue, 28 Dec 2010 20:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-51774</guid>
		<description>Works good, except for a small issue. 
Seems the text box is locked from any validation. For example ... an asp.net required validation control will not fire when the textbox loses focus. Also, a compare validation will not fire when control loses focus.  I tried a jQuery blur() function and it won&#039;t fire either.

Any help or ideas ??</description>
		<content:encoded><![CDATA[<p>Works good, except for a small issue.<br />
Seems the text box is locked from any validation. For example &#8230; an asp.net required validation control will not fire when the textbox loses focus. Also, a compare validation will not fire when control loses focus.  I tried a jQuery blur() function and it won&#8217;t fire either.</p>
<p>Any help or ideas ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-50906</link>
		<dc:creator>Brett</dc:creator>
		<pubDate>Fri, 03 Dec 2010 20:35:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-50906</guid>
		<description>Hey just a heads up--your demo is broken.  Javascript error.  I would like to use your plugin, but I&#039;m not going to bother downloading it when the demo doesn&#039;t even work.</description>
		<content:encoded><![CDATA[<p>Hey just a heads up&#8211;your demo is broken.  Javascript error.  I would like to use your plugin, but I&#8217;m not going to bother downloading it when the demo doesn&#8217;t even work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timmy</title>
		<link>http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/#comment-50876</link>
		<dc:creator>Timmy</dc:creator>
		<pubDate>Mon, 05 Jul 2010 02:29:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.decaf.de/?p=938#comment-50876</guid>
		<description>I really like the idea of your plugin.  Nevertheless, the challenge of writing it was much more interesting to me, so I&#039;ve written my own version...
demo:
&lt;a href=&quot;http://timmywillison.com/samples/password123&quot; rel=&quot;nofollow&quot;&gt;http://timmywillison.com/samples/password123/&lt;/a&gt;
github:
&lt;a href=&quot;http://github.com/timmywil/password123&quot; rel=&quot;nofollow&quot;&gt;http://github.com/timmywil/password123&lt;/a&gt;


It still supports pasting into the field, is unobtrusive, and has the same options minus the interval change and debug mode, which I didn&#039;t really want to put in there, but it would be easy to add.  It also supports adding/deleting from the middle and the cursor position stays the same even as the values are masked.
This was harder than I thought it would be.
Thank you for the inspiration.
Timmy</description>
		<content:encoded><![CDATA[<p>I really like the idea of your plugin.  Nevertheless, the challenge of writing it was much more interesting to me, so I&#8217;ve written my own version&#8230;<br />
demo:<br />
<a href="http://timmywillison.com/samples/password123" rel="nofollow">http://timmywillison.com/samples/password123/</a><br />
github:<br />
<a href="http://github.com/timmywil/password123" rel="nofollow">http://github.com/timmywil/password123</a></p>
<p>It still supports pasting into the field, is unobtrusive, and has the same options minus the interval change and debug mode, which I didn&#8217;t really want to put in there, but it would be easy to add.  It also supports adding/deleting from the middle and the cursor position stays the same even as the values are masked.<br />
This was harder than I thought it would be.<br />
Thank you for the inspiration.<br />
Timmy</p>
]]></content:encoded>
	</item>
</channel>
</rss>

