I am using jQuery to submit form data to a file in the form's action. However, when I submit the form, the browser redirects to the action (comment.php). I don't know why this is because e.preventDefault() should stop the browser's redirection. Ideally, I would like the browser to not redirect and remain on the current page (index.php).

jQuery:

<script type='text/javascript'>
    $('document').ready(function(){
        $('.commentContainer').load('../writecomment.php');
        $('.answerContainer').on('submit', 'form', function(e){
            e.preventDefault();
            var form = $(this).closest('form');
            $.post($(form).attr('action'), 
            $(form).serialize(), 
            function() {
                $('.commentContainer').load('../writecomment.php');
                $('.commentBox').val('');
            }
        });
    });
</script>

HTML Form:

<form method='POST' action='../comment.php'>
    //form contents
</form>
link|improve this question

1  
add return false; to your on submit function. – Virendra Dec 31 '11 at 19:32
@Virendra where exactly should i add return false? after or before preventDefault? – kirby Dec 31 '11 at 19:33
Just before last });. – Virendra Dec 31 '11 at 19:34
@Virendra no luck. still redirects – kirby Dec 31 '11 at 19:35
try adding onsubmit="return false;" to your form. – Virendra Dec 31 '11 at 19:36
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

I don't think your selector and on method is working correctly. Try: $('form').on('submit', function(e) { are you sure you have wrapped your form in a element with the class answerContainer??

and then just to be sure don't use $.post use $.ajax:

and this inside an on i the element eg. form not the first selector .answerContainer.

$('document').ready(function(){

    $('.commentContainer').load('../writecomment.php');

    $('.answerContainer').on('submit', 'form', function(event) {
        event.preventDefault();
        var $form = $(this);
        $.ajax({
            "url": $form.attr("action"),
            "data": $form.serialize(),
            "type": $form.attr("method"),
            "response": function() {
                $('.commentContainer').load('../writecomment.php');
                $('.commentBox').val('');
            }
        });
    });
});
link|improve this answer
that was the solution. im not sure what part of my code specifically wasn't working, but that was a great answer. thank you very much – kirby Dec 31 '11 at 19:50
Im eater . But you had at least one error. var form = $(this).closest("form"). should be var form = $(this). – Andreas AL Dec 31 '11 at 19:52
@user802370, Even though you are preventing the default form action, this line then goes on to submit the form: $.post($(form).attr('action'),. As stated in the answer, using .ajax rather than .post is what really fixes it. – Sparky672 Dec 31 '11 at 19:53
@AndreasAL this is not part of the original question, but when i use your code the commentBox value doesnt clear. it didn't clear when i used my code either, but any speculation as to why this happens? I double checked that textarea has the class commentBox – kirby Dec 31 '11 at 20:01
feedback

Your Answer

 
or
required, but never shown

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