R
R
Rustik19792018-05-24 21:09:51
JavaScript
Rustik1979, 2018-05-24 21:09:51

Book button not working?

Hello!

On the WordPress site https://dreammediagroup.kz there is an ORDER DEVELOPMENT button that calls the form.

The form is implemented via jquery.ajax located in the common.js file

$("#callback").submit(function() {
    $.ajax({
      type: "GET",
      url: "/wp-content/themes/dmgsite/mail.php",
      data: $("#callback").serialize()
    }).done(function() {
      alert("Спасибо за заявку!");
      setTimeout(function() {
        $.fancybox.close();
      }, 1000);
    });
    return false;
  });

});


On the main page, contact page and blog page, the form fires and submits the application.
There are no categories or individual entries on the pages.

Can you tell me how to make the form work on all pages of the site?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vitaly, 2018-05-24
@rim89

The form is implemented via jquery.ajax located in the common.js file

you have errors in the console on these pages, fix them first

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question