I'm trying to access my form object inside of ajaxForm's error method:
$('#foo').ajaxForm({
error: function(){
// where's my $('#foo') object?
}
});
error can take 3 params, but none of them are the form object, also this returns the url, but again no form.
Any suggestions?