tag:blogger.com,1999:blog-2100928329644461483.post7264711318381621556..comments2013-06-27T15:51:58.632+05:30Comments on PHP Tutorial For Beginners: Jquery Simple Form Validation | PHP Tutorial for b...Anil Guptahttps://plus.google.com/113348291940533296027[email protected]Blogger20125tag:blogger.com,1999:blog-2100928329644461483.post-1913461990561867482013-06-27T15:51:58.632+05:302013-06-27T15:51:58.632+05:30the code work nice .i want to show the result on a...the code work nice .i want to show the result on another page this code show the result on same page after the form codeMati ur Rahmanhttp://www.blogger.com/profile/11277763878908824042[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-57644798835082625592013-05-23T18:37:49.249+05:302013-05-23T18:37:49.249+05:30Is it possible to give minimal characters and/or m...Is it possible to give minimal characters and/or maximum number of characters?Janek Ozgahttp://www.blogger.com/profile/14364177640501966260[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-52224777951262134392013-05-23T08:31:49.171+05:302013-05-23T08:31:49.171+05:30how to required field than contains + and numbers ...how to required field than contains + and numbers only?saifulhttp://www.blogger.com/profile/02104254513950473687[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-91457006117705798472013-05-21T13:45:46.039+05:302013-05-21T13:45:46.039+05:30you does it well i have tried it add this to your ...you does it well i have tried it add this to your code messages:{<br /><br /><br />zipcode:{<br /> required: &quot;Please enter your ZIP code.&quot;,<br /> number: &quot; fill numbers.....!&quot;<br /> },<br /> <br />}lijadis worknehhttp://www.blogger.com/profile/02478288401962175556[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-39000497952697371532013-05-08T16:41:41.893+05:302013-05-08T16:41:41.893+05:30Godd information about email validation.., keep bl...Godd information about email validation..,<br />keep blogging.Email Verification Softwarehttp://marketingemailsoftware.net/email-verification.html[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-39217524100029297542013-05-05T11:51:57.655+05:302013-05-05T11:51:57.655+05:30Hi, $(document).ready(function(){ $(&quot;#zip...Hi,<br /><br /> $(document).ready(function(){<br /> $(&quot;#zipform&quot;).validate({<br /> debug: false,<br /> rules: {<br /> <br /> dropdown: &quot;required&quot;,<br /> <br /> zipcode: {<br /> required: true,<br /> number: true<br /> },<br /> <br /> <br /> email: {<br /> required: true,<br /> email: true<br /> }<br /> },<br /> messages: {<br /> zipcode: &quot;Please enter your ZIP code.&quot;,<br /> email: &quot;Please enter your valid email address.&quot;,<br /> dropdown: &quot;Please select option from dropdown list.&quot;,<br /> },<br /><br /> });<br /> });<br /><br /><br />This is my code working fine, but i want ...<br /><br />zipcode: {<br /> required: true,<br /> number: true<br /> },<br />If zipcode is blank, its showing message <br />zipcode: &quot;Please enter your ZIP code.&quot;,<br /><br />but if it is Alphabetic character then it should say, fill numbers.....!<br /><br />How i can do that ?<br /><br />Thanks,<br />Arvind eyrieteckhttp://www.blogger.com/profile/01145579519963535752[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-4647688150432424882013-05-01T02:01:43.290+05:302013-05-01T02:01:43.290+05:30This comment has been removed by the author.Jackhttp://www.blogger.com/profile/00838333256565878164[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-54788863931983476562013-04-19T16:22:31.371+05:302013-04-19T16:22:31.371+05:30You can remove the below code and put action page ...You can remove the below code and put action page in your form.<br /><br />,submitHandler: function(form) {<br /> <br /> $.post(&#39;jqueryvalidation.php&#39;, $(&quot;#form1&quot;).serialize(), function(data) {<br /> $(&#39;#result&#39;).html(data);<br /> });<br /> }Neel_Thts_Mehttp://www.blogger.com/profile/18195043689962730240[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-24789644320536214792013-04-18T22:37:21.808+05:302013-04-18T22:37:21.808+05:30thank you that worked a charm, just one last issue...thank you that worked a charm, just one last issue with this validation script, it loads the next step under the form but i need it to redirect to a fresh page in its self <br /><br /> $.post(&#39;nextstep.php&#39;, $(&quot;#form1&quot;).serialize(), function(data) {<br /> $(&#39;#result&#39;).html(data);<br /><br />what do i edit here?kyle pughhttp://facebook.com/designdudes[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-69886226145719979692013-04-18T18:04:31.336+05:302013-04-18T18:04:31.336+05:30To check &quot;CHECKBOX&quot; validation you can a...To check &quot;CHECKBOX&quot; validation you can add name of checkbox on rule field and appropriate message in message field in above code.<br />Here is an example:-<br />rules: {<br /> name: &quot;required&quot;,<br /> dropdown: &quot;required&quot;,<br /> checkbox_name:&quot;required&quot;,<br />}<br />messages: {<br /> name: &quot;Please enter your good name.&quot;,<br /> email: &quot;Please enter your valid email address.&quot;,<br /> dropdown: &quot;Please select option from dropdown list.&quot;,<br /> checkbox_name: &quot;Please select checkbox field.&quot;,<br />},Neel_Thts_Mehttp://www.blogger.com/profile/18195043689962730240[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-66011588756978437522013-04-18T08:44:32.621+05:302013-04-18T08:44:32.621+05:30I have already put an article for checking the mul...I have already put an article for checking the multiple checkboxes using jquery. Here is the link for that <br /><a href="http://phpcodeforbeginner.blogspot.in/2013/01/jquery-validation-for-multiple-checkbox.html" rel="nofollow">Checkbox validation using jquery</a>Neel_Thts_Mehttp://www.blogger.com/profile/18195043689962730240[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-58244977362695404092013-04-17T20:29:05.093+05:302013-04-17T20:29:05.093+05:30hi there awesome bit of code, and very easy to ada...hi there awesome bit of code, and very easy to adapt but im trying to make it &quot;check if a checkbox is ticked&quot; at the end of the form.<br /><br /> just like agreeing to terms and condtions, <br /><br />could you help?kyle pughhttp://facebook.com/designdudes[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-41462772752487381742013-03-28T09:17:11.924+05:302013-03-28T09:17:11.924+05:30Welcome...Welcome...Neel_Thts_Mehttp://www.blogger.com/profile/18195043689962730240[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-52074056113681503552013-03-26T21:21:05.948+05:302013-03-26T21:21:05.948+05:30great!!! thank ugreat!!! thank uAnonymous[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-41598707797187896992013-03-12T16:16:19.923+05:302013-03-12T16:16:19.923+05:30You are always welcome...:)You are always welcome...:)Neel_Thts_Mehttp://www.blogger.com/profile/18195043689962730240[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-47763269029275108522013-03-12T15:57:18.580+05:302013-03-12T15:57:18.580+05:30thanks..code is very simple and easy to understand...thanks..code is very simple and easy to understand...Anonymous[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-85140125631086142222013-03-12T13:42:23.749+05:302013-03-12T13:42:23.749+05:30I have updated the code to also validate drop-down...I have updated the code to also validate drop-down list...Neel_Thts_Mehttp://www.blogger.com/profile/18195043689962730240[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-31747607532312137622013-03-11T18:33:19.224+05:302013-03-11T18:33:19.224+05:30how to validate drop drow list how to validate drop drow list<br />Anonymous[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-87238347074810478792013-02-06T09:34:40.861+05:302013-02-06T09:34:40.861+05:30To check integer validation you can use rules: { ...To check integer validation you can use<br />rules: {<br /> age: {<br /> required: true,<br /> number: true<br /> }<br /> }<br />// Where age is name of your textboxNeel_Thts_Mehttp://www.blogger.com/profile/18195043689962730240[email protected]tag:blogger.com,1999:blog-2100928329644461483.post-26489121032687717572013-02-05T03:19:53.470+05:302013-02-05T03:19:53.470+05:30How do you check for an integer? numer:true and di...How do you check for an integer? numer:true and digit true allow decimalsAnonymous[email protected]