> Thank you very much Mike, ill try that later. One last thing, if i want the
> form to be submitted by an html link rather than a submit button how do i do
> that ?
Tim,
That's a case when you would use ajaxSubmit instead of ajaxForm
because you want to submit the form in response to the anchor's click
event (instead of the form's submit event).
$('#myAnchor').click(function() {
('#myForm').ajaxSubmit();
return false;
});
In general, that's not a great idea because it won't degrade gracefully.
Mike
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/