[jQuery] Re: Validation jQuery plugin - onfocusout throws error

2008-03-07 Thread Jörn Zaefferer
henry schrieb: jquery: 1.2.3 jquery validation plugin: 1.2.1 I have: form id=myform name=myform ... /form $().ready(){ $(#myform).validate({onfocusout:true}); } firebug error message validator.settings[on + event.type].call is not a function on jquery.validate.js line 250 same error

[jQuery] Re: Validation jQuery plugin - onfocusout throws error

2008-03-07 Thread henry
Validate elements (except checkboxes/radio buttons) on blur. If nothing is entered, all rules are skipped, except when the field was already marked as invalid. I want $.validate() to validate my form element on blur, so I set onfocusout to true. Althought it says by default it is set to true,