[jQuery] Re: jQuery.ajax custom parameter to success callback function

2009-08-05 Thread rem
Thank you Ricardo! On Aug 5, 9:28 am, Ricardo wrote: > There is no point in validating via AJAX unless something related to > sessions needs to be checked. You should validate twice, once client- > side in javascript and again on the server. The jQuery Validation > plugin should cover your needs

[jQuery] Re: jQuery.ajax custom parameter to success callback function

2009-08-04 Thread Ricardo
There is no point in validating via AJAX unless something related to sessions needs to be checked. You should validate twice, once client- side in javascript and again on the server. The jQuery Validation plugin should cover your needs for this: http://docs.jquery.com/Plugins/Validation On Aug 4

[jQuery] Re: jQuery.ajax custom parameter to success callback function

2009-08-04 Thread rem
I've done some digging around and this doesn't seem to be a very good practice after all... I'm looking further for the best output but would appreciate your ideas as well. Thank you. On Aug 4, 10:58 pm, rem wrote: > Hello friends, > > I am trying to validate a form using jQuery and PHP. The ac