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;
});
OnSuccess, you want another Ajax call to take place? – Marnix Jan 20 '11 at 16:26<div>or whatever, right? Ok thanks. – Pointy Jan 20 '11 at 16:32