<?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 Live Form Validation</title>
	<atom:link href="http://www.geektantra.com/2009/09/jquery-live-form-validation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/</link>
	<description>yet another geek&#039;s blog</description>
	<lastBuildDate>Wed, 08 Sep 2010 11:27:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: OOzy</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-2/#comment-725</link>
		<dc:creator>OOzy</dc:creator>
		<pubDate>Sat, 04 Sep 2010 10:17:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-725</guid>
		<description>Hello,

Gr8 plug-in. I immediately removed my old plug-in and installed this one. Up to know everything is ok but I have one question about validating dates. Unfortunately, my date is split into three boxes (day, month, and year). How can I validate this date.

PS, I am using eZ Publish CMS and it splits dates into three boxes.

Thx</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Gr8 plug-in. I immediately removed my old plug-in and installed this one. Up to know everything is ok but I have one question about validating dates. Unfortunately, my date is split into three boxes (day, month, and year). How can I validate this date.</p>
<p>PS, I am using eZ Publish CMS and it splits dates into three boxes.</p>
<p>Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jQuery Live Form Validation Plugin: Form Validate &#124; Greepit</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-2/#comment-723</link>
		<dc:creator>jQuery Live Form Validation Plugin: Form Validate &#124; Greepit</dc:creator>
		<pubDate>Wed, 01 Sep 2010 06:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-723</guid>
		<description>[...] here, you might want to subscribe to the RSS feed for updates on this topic.Powered by WP Greet BoxForm Validate is a free jQuery plugin which helps create easy form validations with high flexibility and a large [...]</description>
		<content:encoded><![CDATA[<p>[...] here, you might want to subscribe to the RSS feed for updates on this topic.Powered by WP Greet BoxForm Validate is a free jQuery plugin which helps create easy form validations with high flexibility and a large [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GeekTantra</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-1/#comment-718</link>
		<dc:creator>GeekTantra</dc:creator>
		<pubDate>Tue, 17 Aug 2010 06:50:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-718</guid>
		<description>Hi Kristian,

The activation of the validation is on the blur event only. You can try the validation without the mouse only using the &quot;Tabs&quot; on the keyboard. The fact that all fields go red when you click on submit is because they are all required. 

Do get back in-case you have any more doubts.

Regards,
GeekTantra</description>
		<content:encoded><![CDATA[<p>Hi Kristian,</p>
<p>The activation of the validation is on the blur event only. You can try the validation without the mouse only using the &#8220;Tabs&#8221; on the keyboard. The fact that all fields go red when you click on submit is because they are all required. </p>
<p>Do get back in-case you have any more doubts.</p>
<p>Regards,<br />
GeekTantra</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KristianT</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-1/#comment-717</link>
		<dc:creator>KristianT</dc:creator>
		<pubDate>Tue, 17 Aug 2010 06:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-717</guid>
		<description>You need to add a check to see if the field is blank on your blur event. It doesn&#039;t seem correct that you click on a field, then click on another field and the previous one goes red even though I have not yet attempted to fill in the field. 
So currently if you simply click on the fields from top to bottom without entering anything they will all go red, even if you don&#039;t enter anything.</description>
		<content:encoded><![CDATA[<p>You need to add a check to see if the field is blank on your blur event. It doesn&#8217;t seem correct that you click on a field, then click on another field and the previous one goes red even though I have not yet attempted to fill in the field.<br />
So currently if you simply click on the fields from top to bottom without entering anything they will all go red, even if you don&#8217;t enter anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GeekTantra</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-1/#comment-710</link>
		<dc:creator>GeekTantra</dc:creator>
		<pubDate>Sat, 07 Aug 2010 02:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-710</guid>
		<description>You can easily do this! Do check the advanced demo. 

http://www.geektantra.com/projects/jquery-form-validate/advanced_demo/

Your case is similar to the radio button validation. That piece of code should work well..

                jQuery(&quot;#ValidCheckbox&quot;).validate({
                    expression: &quot;if (jQuery(SelfID).val()) return true; else return false;&quot;,
                    message: &quot;Please check atleast one input&quot;
                });</description>
		<content:encoded><![CDATA[<p>You can easily do this! Do check the advanced demo. </p>
<p><a href="http://www.geektantra.com/projects/jquery-form-validate/advanced_demo/" rel="nofollow">http://www.geektantra.com/projects/jquery-form-validate/advanced_demo/</a></p>
<p>Your case is similar to the radio button validation. That piece of code should work well..</p>
<p>                jQuery(&#8220;#ValidCheckbox&#8221;).validate({<br />
                    expression: &#8220;if (jQuery(SelfID).val()) return true; else return false;&#8221;,<br />
                    message: &#8220;Please check atleast one input&#8221;<br />
                });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Solomon</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-1/#comment-709</link>
		<dc:creator>Solomon</dc:creator>
		<pubDate>Fri, 06 Aug 2010 19:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-709</guid>
		<description>Is it possible to modify this code to check at least one text box is filled. I have three phone number and I need only one of them has text inside. 

Thanks,</description>
		<content:encoded><![CDATA[<p>Is it possible to modify this code to check at least one text box is filled. I have three phone number and I need only one of them has text inside. </p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-1/#comment-708</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Tue, 03 Aug 2010 14:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-708</guid>
		<description>I tried adding a normal $_POST php file  to the form but it didnt seem to work. When I download the form it did not have a action file I had to add one my own php file to the action but it didnt even work.</description>
		<content:encoded><![CDATA[<p>I tried adding a normal $_POST php file  to the form but it didnt seem to work. When I download the form it did not have a action file I had to add one my own php file to the action but it didnt even work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GeekTantra</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-1/#comment-693</link>
		<dc:creator>GeekTantra</dc:creator>
		<pubDate>Wed, 28 Jul 2010 04:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-693</guid>
		<description>The form is like a standard form with front-end validation enabled. When all the validations pass it will automatically post the form data to the action file.

You can use standard $_POST of php to fetch variables from the form.</description>
		<content:encoded><![CDATA[<p>The form is like a standard form with front-end validation enabled. When all the validations pass it will automatically post the form data to the action file.</p>
<p>You can use standard $_POST of php to fetch variables from the form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-1/#comment-692</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Tue, 27 Jul 2010 18:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-692</guid>
		<description>Can someone tell me how I can make the form send. Like what do I need in a php file so I can send it out with this form. If someone can help me out now I would really appreciate that.</description>
		<content:encoded><![CDATA[<p>Can someone tell me how I can make the form send. Like what do I need in a php file so I can send it out with this form. If someone can help me out now I would really appreciate that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GeekTantra</title>
		<link>http://www.geektantra.com/2009/09/jquery-live-form-validation/comment-page-1/#comment-691</link>
		<dc:creator>GeekTantra</dc:creator>
		<pubDate>Tue, 27 Jul 2010 08:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.geektantra.com/?p=99#comment-691</guid>
		<description>function check_if_username_exists(username) {
var username_available = false;
jQuery.get(‘http://url.to.your.query/check.php’, { ‘username’: username }, function(data){
if(data ==’success’ ) {
username_available = true;
}else{
username_available = false;
}
});
return username_available;
}
jQuery(function(){
jQuery(“#“).validate({
expression: “if ( check_if_username_exists(VAL) ) return true; else return false;”,
message: “Username already exists”
});
});

use the above code...</description>
		<content:encoded><![CDATA[<p>function check_if_username_exists(username) {<br />
var username_available = false;<br />
jQuery.get(‘http://url.to.your.query/check.php’, { ‘username’: username }, function(data){<br />
if(data ==’success’ ) {<br />
username_available = true;<br />
}else{<br />
username_available = false;<br />
}<br />
});<br />
return username_available;<br />
}<br />
jQuery(function(){<br />
jQuery(“#“).validate({<br />
expression: “if ( check_if_username_exists(VAL) ) return true; else return false;”,<br />
message: “Username already exists”<br />
});<br />
});</p>
<p>use the above code&#8230;</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! -->