R
R
rinatoptimus2018-02-10 21:32:53
JavaScript
rinatoptimus, 2018-02-10 21:32:53

Why doesn't alert come out?

I tried to add response, data to the callback in the parameter, still the alert does not pop up.

(function(){
    $("#form").submit(function() { //устанавливаем событие отправки для формы с id=form

        var form_data = $(this).serialize(); //собераем все данные из формы
        $.ajax({
            type: "POST", //Метод отправки
            url: "send.php", //путь до php фаила отправителя
            data: form_data,
            success: function() {
                   //код в этом блоке выполняется при успешной отправке сообщения
                   alert("Ваше сообщение отправлено!");
               }
        });

    })
})();

The form itself works samaranews.hol.es/php-form

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dimonchik, 2018-02-10
@dimonchik2013

debugging see
crossdomain there or corny ajax is disabled as in the latest bootstrap mini

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question