Ok guys, I appreciate all the help!

I have just one more thing.  I am using the following script:

<script type="text/javascript">
$(document).ready(function(){
$('#page_asset_builder_20248').ajaxForm({
        success: function(data) {
                $('#uploadOutput').append( data );
        }
});
});
</script>

Which is working, but my server returns an error message when fields
are not entered, so in this case, I need to return only a specific div
with the error text in it.  How would I modify the script to do this?

On May 14, 6:17 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > 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?
>
> You really don't need to be concerned with the iframe, the plugin
> handles everything for you.  The form is posted to the server, the
> server response goes to the iframe, the plugin extracts that response
> for you and manages it as though the request used XHR.

Reply via email to