> Another question: i want to disable the submit event of the form, yet my code > doesn't work "form.unbind is not a function"
Alexandre,
You can only unbind handlers that you've added. But in this case the
answer is to add a handler that simple returns false.
$('#myForm').submit(function() { return false; });
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
