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