core/skin/iiko.install-asc.ru/js/js.js

26 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

$('.popup-content').magnificPopup({
type: 'inline'
});
$("#form-os").submit(function(event) {
event.preventDefault();
var formData = new FormData(this);
$.ajax({
type: 'POST', // Тип запроса
url: '/t.php', // Скрипт обработчика
data: formData, // Данные которые РјС РїРµСЂРµРґР°РµРј
cache: false, // Рзапросах POST отключено по умолчанию, но перестрахуемся
contentType: false, // РўРёРї кодирования данных РјС Р·Р°РґР°Р»Рё РІ форме, это отключим
processData: false,
success: function(data) {
}
});
$("#q-result").removeClass("hidden");
})
$("a.ancLinks").click(function() {
var elementClick = $(this).attr("href");
var destination = $(elementClick).offset().top;
$('html,body').animate({ scrollTop: destination }, 3000);
return false;
});