I am using server side form validation to post a response (in html) to a form submitted using Ajax but more specifically with the http://jquery.malsup.com/form/#getting-started plugin.

I have tried:

<script type="text/javascript">
$(document).ready(function() {
 var $dialog = $('<div id="dialog"></div>')
        .html('This dialog will show every time!')
        .dialog({
            autoOpen: false,
            title: 'Basic Dialog'
        });
    $('#bookingForm').ajaxForm({
        success: function() { 
            $dialog.dialog('open');
            // prevent the default action, e.g., following a link
            return false;
        } 
    });
});
</script>

The Ajax submit fires, and the server returns a response but no jquery dialog.

Removing

autoOpen: false,

shows the dialog so I know that this part of the script is working.

I have also tested the callback with an alert and it is also working.

Your help is appreciated.

Tim

link|improve this question

Any errors on the page? Are you sure jQueryUI is being loaded correctly? – Andrew Whitaker Dec 12 '11 at 3:56
No errors in firebug or chrome developer tools, If I fire $dialog.dialog('open'); return false; on a button click function event handler it works. Or even easier just remove autoOpen: false and it loads right away. – Tim Dec 12 '11 at 11:01
Can you show how the submit is done? is it causing the page to reload? – smendola Dec 13 '11 at 0:24
Sorry, please disregard my last comment. – smendola Dec 13 '11 at 0:51
Is the success callback is called ? Have your tried adding a console.log or an alert prior to your dialog open ? – Didier Ghys Dec 13 '11 at 10:34
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.