athityakumar.github.io icon indicating copy to clipboard operation
athityakumar.github.io copied to clipboard

AJAXify the form submission

Open athityakumar opened this issue 7 years ago • 0 comments

Reference -

$.ajax({
        type: "POST",
        url: "//formspree.io/[email protected]",
        data: $(form).serialize(), // serializes the form's elements.
        dataType: 'json',
        success: function(data)
        {
            $('.form-sent').slideDown(400); // show response from the php script.
        }
      });

athityakumar avatar Apr 20 '17 14:04 athityakumar