У меня есть магазин shopify, и я хочу добавить форму на странице продукта, проблема в том, что когда я хочу отправить сообщение об использовании ajax с внешней ссылкой, но я хочу остаться на той же странице, она переходит на внешнюю ссылку
<form method="post" id="fastform"action="http://website.fun/bianca/doc.php" class="form" enctype="multipart/form-data">
<label class="label" style="color: rgb(0, 0, 0);">Nom : </label>
<input placeholder="Nom" class="input" width="100%" type="text" name="nom" id="nom">
<label class="label" style="color: rgb(0, 0, 0);">Télephone* : </label>
<input placeholder="Telephone" class="input" width="100%" type="text" name="phone" id="phone">
<input placeholder="Adresse" class="input" width="100%" type="text" name="adresse" id="adresse">
<div id="form-messages"></div>
<button type="submit" class="button-input btn btn-default" name="btn"style="margin-top: 20px;" id="btn">Commander</button>
и это js en ajax part
<script>
$(function () {
// Get the form.
var form = $('#fastform');
// Get the messages div.
var formMessages = $('#form-messages');
// Set up an event listener for the contact form.
$(form).submit(function (event) {
// Stop the browser from submitting the form.
event.preventDefault();
// Serialize the form data.
var formData = $(form).serialize();
$.ajax({
type: 'POST',
url: $(form).attr('action'),
data: formData
}.done(function(response) {
// Make sure that the formMessages div has the 'success' class.
$(formMessages).removeClass('error');
$(formMessages).addClass('success');
// Set the message text.
$(formMessages).text("votre commande et bien traiter");
// Clear the form.
$('#name').val('');
$('#email').val('');
$('#message').val('');
})).fail(function(data) {
// Make sure that the formMessages div has the 'error' class.
$(formMessages).removeClass('success');
$(formMessages).addClass('error');
// Set the message text.
if (data.responseText !== '') {
$(formMessages).text(data.responseText);
} else {
$(formMessages).text('Oops! il\'ya un problem');
}
});
});
я хочу, чтобы страница оставалась без обновления и получала результаты ната же страница