I am needing to pass quite a few other options. Since it is submitting into an iframe, would the normal form POST happen here? Or do I need to pass the value of those field into a var, and pass those?
On May 14, 5:33 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > 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