[jQuery] Jquery plugin validation remote option

2009-05-20 Thread viralme
$(document).ready(function() { var valprod = $("#frmProduct").validate({ onkeyup:false, rules: { txtProduct:{ required: true, minlength: 4, productCheck: true } } }); valprod.resetForm(); }

[jQuery] jQuery plugin: Validation

2009-04-11 Thread Rick
I'm using this plugin in its simplest form.. http://docs.jquery.com/Plugins/Validation All I have is this for my code: $(document).ready(function(){ $("#form").validate(); }); It works fine, but I'm trying to hide the error messages which it defaults to "This field is required." The

[jQuery] jquery Plugin Validation + jquery Form Plugin

2008-06-27 Thread Fred Boucher
I have a problem using two plugins with Jquery : http://bassistance.de/jquery-plugins/jquery-plugin-validation/ and http://www.malsup.com/jquery/form/#code-samples I have a form where I need to check if fields are wrong or not (with jquery Plugin Validation). When the form is submitted and all fi