<?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: Release: Validation Plugin 1.5.2</title>
	<atom:link href="http://bassistance.de/2009/03/20/release-validation-plugin-152/feed/" rel="self" type="application/rss+xml" />
	<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/</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: 3m masr</title>
		<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/comment-page-1/#comment-176876</link>
		<dc:creator>3m masr</dc:creator>
		<pubDate>Tue, 01 Dec 2009 20:34:30 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?p=448#comment-176876</guid>
		<description>thanks for great plugin .. i am writing a series of tutorials about JQuery validation and i am so happy to found such a plugin .</description>
		<content:encoded><![CDATA[<p>thanks for great plugin .. i am writing a series of tutorials about JQuery validation and i am so happy to found such a plugin .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PB</title>
		<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/comment-page-1/#comment-166940</link>
		<dc:creator>PB</dc:creator>
		<pubDate>Wed, 27 May 2009 05:34:25 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?p=448#comment-166940</guid>
		<description>Great! Thanks for all your hard work!</description>
		<content:encoded><![CDATA[<p>Great! Thanks for all your hard work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/comment-page-1/#comment-163517</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Thu, 16 Apr 2009 17:16:13 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?p=448#comment-163517</guid>
		<description>The subform validation would be fantastic.  I&#039;ve been struggling with how to use the validation easily on an asp.net form with a progression of questions that are divided into divs all on the same form.  Would appreciate any suggestions or BKMs.  thanks for the badass plugin.</description>
		<content:encoded><![CDATA[<p>The subform validation would be fantastic.  I&#8217;ve been struggling with how to use the validation easily on an asp.net form with a progression of questions that are divided into divs all on the same form.  Would appreciate any suggestions or BKMs.  thanks for the badass plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CurlyFro</title>
		<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/comment-page-1/#comment-161761</link>
		<dc:creator>CurlyFro</dc:creator>
		<pubDate>Thu, 02 Apr 2009 21:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?p=448#comment-161761</guid>
		<description>i need subform validation too.</description>
		<content:encoded><![CDATA[<p>i need subform validation too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jörn</title>
		<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/comment-page-1/#comment-160129</link>
		<dc:creator>Jörn</dc:creator>
		<pubDate>Sat, 21 Mar 2009 11:08:05 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?p=448#comment-160129</guid>
		<description>@Bernd: Good call, fixed the file on my site. I don&#039;t control the file names on plugins.jquery.com though, can&#039;t fix that.

@Joel: The plugin heavily relies on a form element, so thats currently not possible. I have some ideas for subform validation, but not quite there yet.</description>
		<content:encoded><![CDATA[<p>@Bernd: Good call, fixed the file on my site. I don&#8217;t control the file names on plugins.jquery.com though, can&#8217;t fix that.</p>
<p>@Joel: The plugin heavily relies on a form element, so thats currently not possible. I have some ideas for subform validation, but not quite there yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/comment-page-1/#comment-160029</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Fri, 20 Mar 2009 20:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?p=448#comment-160029</guid>
		<description>Jörn, great stuff!

Is there any way to use a container element as a valid selector instead of a form element?

Example:

&lt;code&gt;


    $(document).ready(function(){
        var v = $(&quot;#step1&quot;).validate({
            rules: {
               name: &quot;required&quot;
            }
        });
        
        $(&quot;#Next&quot;).click(function(){
            $(v.elements()[1]).valid();
        });
    });

&lt;div id=&quot;step1&quot;&gt;
  &lt;p&gt;
     &lt;label for=&quot;cname&quot;&gt;Name&lt;/label&gt;
     &lt;input id=&quot;cname&quot; name=&quot;name&quot; size=&quot;25&quot; /&gt;
  &lt;/p&gt;
  &lt;p&gt;
     &lt;input id=&quot;Next&quot; type=&quot;button&quot; value=&quot;Submit&quot; /&gt;
   &lt;p&gt;
&lt;/div&gt;

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Jörn, great stuff!</p>
<p>Is there any way to use a container element as a valid selector instead of a form element?</p>
<p>Example:</p>
<p><code></p>
<p>    $(document).ready(function(){<br />
        var v = $("#step1").validate({<br />
            rules: {<br />
               name: "required"<br />
            }<br />
        });</p>
<p>        $("#Next").click(function(){<br />
            $(v.elements()[1]).valid();<br />
        });<br />
    });</p>
<p>&lt;div id="step1"&gt;<br />
  &lt;p&gt;<br />
     &lt;label for="cname"&gt;Name&lt;/label&gt;<br />
     &lt;input id="cname" name="name" size="25" /&gt;<br />
  &lt;/p&gt;<br />
  &lt;p&gt;<br />
     &lt;input id="Next" type="button" value="Submit" /&gt;<br />
   &lt;p&gt;<br />
&lt;/div&gt;</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernd Matzner</title>
		<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/comment-page-1/#comment-160025</link>
		<dc:creator>Bernd Matzner</dc:creator>
		<pubDate>Fri, 20 Mar 2009 19:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?p=448#comment-160025</guid>
		<description>Hi Jörn,

fantastic plugin! 

The download on your site still contains 1.5.1 - while on the jQuery plugins repository it contains the updated version. The name of the file, however, is a little misleading: jquery.validate_13.zip

Thanks for your work!
Bernd</description>
		<content:encoded><![CDATA[<p>Hi Jörn,</p>
<p>fantastic plugin! </p>
<p>The download on your site still contains 1.5.1 &#8211; while on the jQuery plugins repository it contains the updated version. The name of the file, however, is a little misleading: jquery.validate_13.zip</p>
<p>Thanks for your work!<br />
Bernd</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: park</title>
		<link>http://bassistance.de/2009/03/20/release-validation-plugin-152/comment-page-1/#comment-159988</link>
		<dc:creator>park</dc:creator>
		<pubDate>Fri, 20 Mar 2009 15:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://bassistance.de/?p=448#comment-159988</guid>
		<description>Great! Thanks for all your hard work!</description>
		<content:encoded><![CDATA[<p>Great! Thanks for all your hard work!</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! -->
