Skip to content Skip to sidebar Skip to footer

Js Deleting Submitted Form Data

The problem: Javascript function( which was premade by template) cleans the form data sent to me by php The php code:

Solution 1:

You haven't provided the data argument for $.post

Try

var form = $('.contact-form');
form.submit(function () {'use strict',
    var $this = $(this);    
    $.post($(this).attr('action'), $this.serialize(), function(data) {
        $this.prev().text(data.message).fadeIn().delay(3000).fadeOut();
    },'json');
    returnfalse;
});

References:

jQuery.post() Docs

jQuery.serialize() Docs

Post a Comment for "Js Deleting Submitted Form Data"