[jQuery] Problems mit Validation init and IE6
I have several validation inits in a separate js file:
//
=========================================================================
// FORM VALIDATION
//
=========================================================================
var container = $('#error_container');
$("#login_form").validate({
errorContainer: container,
errorLabelContainer: $("ol", container),
wrapper: 'li',
meta: "validate",
event: "keyup"
}); // end validate
$("#password_lost").validate({
errorContainer: container,
errorLabelContainer: $("ol", container),
wrapper: 'li',
meta: "validate",
event: "keyup"
These cause all of the plugins and code I´ve written to stop
functioning.starngely, this works very well in FireFox 2, I have 4
validation init scripts running.
have I done something wrong?
Thanks
}); // end validate