<?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: jQuery plugin: Password Validation</title>
	<atom:link href="http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/feed/" rel="self" type="application/rss+xml" />
	<link>http://bassistance.de</link>
	<description>Jörn Zaefferer on Bass, Geeks and Rock'n'Roll</description>
	<lastBuildDate>Tue, 31 Jan 2012 11:18:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Asodrober</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-196783</link>
		<dc:creator>Asodrober</dc:creator>
		<pubDate>Tue, 24 Jan 2012 12:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-196783</guid>
		<description>Replacing
&lt;code&gt;
return rating.rate &gt; 2;
&lt;/code&gt;
with
&lt;code&gt;
return (rating.rate &gt; 2) &#124;&#124; ((!$.data(element.form, &#039;validator&#039;).settings.rules.password.required) &amp;&amp; (element.value==&#039;&#039;));
&lt;/code&gt;
in jquery.validate.password.js on line 83 worked for me!
Maybe it&#039;s not the better way to do it, but it works! :)</description>
		<content:encoded><![CDATA[<p>Replacing<br />
<code><br />
return rating.rate &gt; 2;<br />
</code><br />
with<br />
<code><br />
return (rating.rate &gt; 2) || ((!$.data(element.form, 'validator').settings.rules.password.required) &amp;&amp; (element.value==''));<br />
</code><br />
in jquery.validate.password.js on line 83 worked for me!<br />
Maybe it&#8217;s not the better way to do it, but it works! <img src='http://bassistance.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Quakkels</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-196688</link>
		<dc:creator>Quakkels</dc:creator>
		<pubDate>Fri, 20 Jan 2012 17:05:16 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-196688</guid>
		<description>I&#039;m running into the same issue as Asodrober. I would like the password meter to work only when the password input is not blank. Is there a way to do this?</description>
		<content:encoded><![CDATA[<p>I&#8217;m running into the same issue as Asodrober. I would like the password meter to work only when the password input is not blank. Is there a way to do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asodrober</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-196680</link>
		<dc:creator>Asodrober</dc:creator>
		<pubDate>Fri, 20 Jan 2012 08:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-196680</guid>
		<description>Great plugin! But when the password is not a required field, it still fails the validation (saying &quot;too short&quot;) of the form when the field is empty...
&lt;code&gt;
$(&#039;#form&#039;).validate({
	rules:{
		password:{
			required:false,
			password:true
		}
	}
}
&lt;/code&gt;
If it&#039;s not a required field and it&#039;s empty, the validation plugin should take it as valid, isn&#039;t it?
Many thanks!</description>
		<content:encoded><![CDATA[<p>Great plugin! But when the password is not a required field, it still fails the validation (saying &#8220;too short&#8221;) of the form when the field is empty&#8230;<br />
<code><br />
$('#form').validate({<br />
	rules:{<br />
		password:{<br />
			required:false,<br />
			password:true<br />
		}<br />
	}<br />
}<br />
</code><br />
If it&#8217;s not a required field and it&#8217;s empty, the validation plugin should take it as valid, isn&#8217;t it?<br />
Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Buarao</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-196609</link>
		<dc:creator>Joseph Buarao</dc:creator>
		<pubDate>Tue, 17 Jan 2012 12:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-196609</guid>
		<description>just use this to my web apps..

thanks! mate :)</description>
		<content:encoded><![CDATA[<p>just use this to my web apps..</p>
<p>thanks! mate <img src='http://bassistance.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pino</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-196549</link>
		<dc:creator>Pino</dc:creator>
		<pubDate>Sun, 15 Jan 2012 19:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-196549</guid>
		<description>Very, very nice plugin, I really like this. Thanks for explaining this.</description>
		<content:encoded><![CDATA[<p>Very, very nice plugin, I really like this. Thanks for explaining this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yulin</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-192205</link>
		<dc:creator>yulin</dc:creator>
		<pubDate>Sat, 08 Oct 2011 02:03:33 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-192205</guid>
		<description>must in  table, it then work???</description>
		<content:encoded><![CDATA[<p>must in  table, it then work???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: berry</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-179902</link>
		<dc:creator>berry</dc:creator>
		<pubDate>Mon, 11 Jan 2010 08:35:01 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-179902</guid>
		<description>cool plugin.. i use it now.. thank you very much</description>
		<content:encoded><![CDATA[<p>cool plugin.. i use it now.. thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-170548</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Wed, 05 Aug 2009 04:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-170548</guid>
		<description>Thanks Jörn.  It seems calling $(&quot;#password&quot;).valid() (without keyup) on its own does the same thing.</description>
		<content:encoded><![CDATA[<p>Thanks Jörn.  It seems calling $(&#8220;#password&#8221;).valid() (without keyup) on its own does the same thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jörn</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-170490</link>
		<dc:creator>Jörn</dc:creator>
		<pubDate>Tue, 04 Aug 2009 08:14:52 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-170490</guid>
		<description>@Rob: Yes, there is.

&lt;pre&gt;&lt;code class=&quot;javascript&quot;&gt;$(&quot;#password&quot;).keyup(function() {
  $(this).valid();
});&lt;/code&gt;&lt;/pre&gt;

That will validate the input on each keypress.</description>
		<content:encoded><![CDATA[<p>@Rob: Yes, there is.</p>
<pre><code class="javascript">$("#password").keyup(function() {
  $(this).valid();
});</code></pre>
<p>That will validate the input on each keypress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://bassistance.de/jquery-plugins/jquery-plugin-password-validation/comment-page-1/#comment-170489</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Tue, 04 Aug 2009 07:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?page_id=482#comment-170489</guid>
		<description>This only works AFTER the user has tabbed out of the text box.  Is there a way to make this work as the user types?</description>
		<content:encoded><![CDATA[<p>This only works AFTER the user has tabbed out of the text box.  Is there a way to make this work as the user types?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
