> If you know your response is always going to be HTML then you could
> use something like this:
>
> $('#uploadForm').ajaxForm({
>        success: function(data) {
>                $('#uploadOutput').append( data );
>        }
> });
>
> The "data" argument in the success function is what holds the response.
>
> Karl Rudd


And if you don't need to pass any other options, you can pass the
success callback to ajaxForm like this:

$('#uploadForm').ajaxForm(function(data) {
    $('#uploadOutput').append(data);
});

Great responses above, Karl.

Mike

Reply via email to