vote up 0 vote down star
$(document).ready(function() {
    $("form.ajax").submit(function(e) {
    	destString = $(this).attr('action');
    	dataString = $(this).serialize();

    	$.ajax({
    		type: "POST",
    		url: destString,
    		data: dataString,
    		datatype: json,
    		success: function(data) {
    			if (!data.success)
    			{
    				$.amwnd({
    					title: 'Error!',
    					content: data.message,
    					buttons: ['ok'],
    					closer: 'ok'
    				});
    			}
    		}
    	});

    	e.preventDefault();
    	return false;
    });
});

That is some code I am using for making all forms I have with class="ajax" submit using Ajax. I have looked at some StackOverflow questions such as this one along with other sites on the web, which has led me put this block of code in:

e.preventDefault();
return false;

That's two things that apparently both stop the form submission via normal methods, but looks like that's not working.

The form I am testing with this is

<form action="add_comment.php" method="post" class="ajax">

Am I doing something wrong, or..?

flag

"Not working" as it the form still submits in the non-Ajax manner? – o.k.w Nov 8 at 6:54
shouldn't that be .submit = function instead of .submit(function or am I missing something? – hasen j Nov 8 at 6:54
@okw - Yes, I get sent to what is defined in the form's action attribute. @hansen j - Doesn't seem like it? docs.jquery.com/Events/submit#fn – a2h Nov 8 at 6:56
yea nvm, I forgot this was jQuery – hasen j Nov 8 at 6:57
@a2h: Yes, your code 'should' work. Can you try to debug (e.g. firebug) to see there's any error upon page load/ready? It seems the event attachment to the form wasn't executed properly. – o.k.w Nov 8 at 7:02
show 5 more comments

1 Answer

vote up 1 vote down check
datatype: json

should be

dataType: 'json'

Note:
The above fixed the form from performing default submission behaviour, doesn't guarantee the ajax call will have a proper return as I have no idea what is being returned.

See Reference

link|flag
Ah. Silly me. Thanks. – a2h Nov 8 at 7:34
@a2h: Sorry I said in my comment in your post that your code 'should' work. I missed that until I tried the codes myself. Good luck! – o.k.w Nov 8 at 7:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.