[jQuery] why i getting Error: form.ajaxSubmit is not a function

2009-04-09 Thread Hellofrom
I try to use Form plug in with Validaiton plug in
i get the following error if firefox
Error: form.ajaxSubmit is not a function

can someone help me please


[jQuery] can some body send me example of validation plug in with Ajax

2009-04-01 Thread Hellofrom
Hello every one
i need your help to send me information (example) of how to use validation
plug in with AJAX


thanks


[jQuery] need your help please

2009-03-21 Thread Hellofrom
can someone give me exmaple of the minValue in Jquery Validaiton query

thanks


[jQuery] Please need your help

2009-03-13 Thread Hellofrom
Hello every one,
I need your help , how can i use validation plug in to validate two form in
the same page
thanks


[jQuery] How to validate two form validaiton-plug in

2009-03-07 Thread Hellofrom
Hello every one
i am new and need to use Validaiton  plug in to validate two from can some
body help me
thanks


[jQuery] equalTo Validation plug in

2009-03-07 Thread Hellofrom
Hello
can some body help my. I have from with two combo box( all listing cities).
I need to be able to validate the combo box value so if their value is
different then submit the form else no
thnaks


[jQuery] Validate two form useing Validation Plugin

2009-02-20 Thread Hellofrom
Hello every one
can some one give me a example of validating two form using Validation
plugin
thanks


[jQuery] Please need your help ( change image when i click on it)

2009-02-15 Thread Hellofrom
Hello Every One
I really need your help,
What i am trying to do is
when click on image in the page i need to change it to other one and in the
same time update textbox with image ID.

Thanks in advance


[jQuery] Datepicker Plugin Quesiton

2009-02-14 Thread Hellofrom
Hello every one
Can some one help me setting the datepicker plugin with the following
options
min date =today
date format =-mm-dd

thanks


[jQuery] Re: Jquery Validaiton plugin

2009-02-13 Thread Hellofrom
Thanks James
I am new to this
How can i check if debug option is true or not?
yes the form submited without validaiton set

On Thu, Feb 12, 2009 at 11:51 PM, James james.gp@gmail.com wrote:


 - Is the debug option set to true?
 - Does the form submit without validation set?

 On Feb 12, 8:05 am, deem hellof...@gmail.com wrote:
  Hello,
  thanks for this great plugin. I try i use it however the valiation is
  working fine but the form is not submited
  can you please help me on that
  thanks



[jQuery] How to submit for usign validation plugin

2009-02-13 Thread Hellofrom
Hello every one can any body tell me what to do to submit the form
$(form).validate({
invalidHandler: function(e, validator) {
var errors = validator.numberOfInvalids();
if (errors) {
var message = errors == 1
? 'You missed 1 field. It has been highlighted below'
: 'You missed ' + errors + ' fields.  They have been
highlighted below';
$(div.error span).html(message);
$(div.error).show();
} else {
$(div.error).hide();
}
},
onkeyup: false,
submitHandler: function() {
debug:false;
$(div.error).hide();*
alert(submit form);what to put here to submit the form*
},
messages: {
password2: {
required:  ,
equalTo: Please enter the same password as above
},
email: {
required:  ,
email: Please enter a valid email address, example:
y...@yourdomain.com,
remote: jQuery.format({0} is already taken, please enter a
different address.)
}
},
debug:true
});