I have a form that is submitted using ajaxSubmit. When the form is submitted it is processed by a page that returns a jquery .get function on success and the form displaying errors on failure.

My problem is that ajaxSubmit doesn't seem to like this either/or scenario.

If I change datatype: to script it'll process the html as script. Left to null it'll give an error saying $ is not defined. Oddly enough most browsers will log the error and still run the .get function properly. Safari however will not run it.

Any ideas on how to process as html but get it to run the <script> tags properly?

Thanks.

On Failure:

You have an error:...
<form>
  ....
</form>

On Success:

<script type="text/javascript">
  $.get(  
   "/ajax/controller.php",
   { 
    step: 2,
    m: "<?php print $_OBJ->get_id(); ?>"
   },  
   function(responseText2){

    $("#form-div").html(responseText2);
   },  
   "html"  
  );      


</script>

Here is the code to submit the form:

$('form#new_meeting').unbind('submit').bind('submit', function(e) {
            e.preventDefault(); // <-- important
            $(this).ajaxSubmit({
                target: $("#form-div")
            });
            return false;
        });
link|improve this question

62% accept rate
@emachine So OnSuccess, you want another Ajax call to take place? – Marnix Jan 20 '11 at 16:26
Show the setup and the call to "ajaxSubmit" - it's hard to understand the complete picture without seeing that. – Pointy Jan 20 '11 at 16:28
I added the code I use to bind ajaxSubmit to the form. Also, yes I want another Ajax call to take place. – emachine Jan 20 '11 at 16:32
And "setupmeeting" is the "id" of some <div> or whatever, right? Ok thanks. – Pointy Jan 20 '11 at 16:32
@Pointy - correct. I actually changed that to #form-div in the example code now. I was being sloppy with my edits. – emachine Jan 20 '11 at 16:36
show 3 more comments
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.