$(window).load(function(){ loc=location.href; refer=document.referrer; agent = navigator.userAgent; var height=0; var width=0; if (self.screen){width = screen.width;height = screen.height} else if (self.java){var jkit = java.awt.Toolkit.getDefaultToolkit();var scrsize = jkit.getScreenSize();width = scrsize.width;height = scrsize.height;} $.get('/engine/mod/ajax/metrica.php?action=user&loc='+loc+'&refer='+refer+'&width='+screen.width+'&height='+screen.height+'&'); }); $.ajaxSetup({ complete: function(){ $('#clbh_phone').mask("89999999999",{placeholder:""}); } }); $(function() { $("#zcwMiniButton").remove(); $("body").append('
'); $("#zcwMiniButton").click( function () { zangiopen(); }); }); function zangiopen() { $.get("/engine/mod/ajax/sipnet.php", {action: 'form'}, function(c) { $("#zangidialog").remove(); $("body").append(" "); $("#zangidialog").dialog({ autoOpen:!0, width:800, modal:true, resizable:!1, dialogClass:"modalfixed", draggable: false }); $(".modalfixed.ui-dialog").css({position:"fixed"}); $("#zangidialog").dialog("option","position",["0","0"]); //$("#zangidialog").html(c) }, "html"); return !1 } function SendCall(uin) { $('.clbh_banner-h1').html("Подождите, устанавливается соединение!"); $('.clbh_oper').html("1"); $("#animus").removeClass("none"); $("#animus").addClass("ease-in-out"); var user_phone = $('#clbh_phone').val(); $.get("/engine/mod/ajax/sipnet.php", {action:'send_call',user_id:uin,user_phone:user_phone}, function(c) { $('.note').remove(); var bott = ""; $('.clbh_timer').timeTo({ seconds: 26, displayHours: false, fontSize: 35, captionSize: 15 }, function(){ $("#animus").removeClass("ease-in-out"); $("#animus").addClass("none"); $('.clbh_timer').remove(); $('.clbh_banner-h1').html("Наш лучший оператор успел с Вами связатся?"); $("#clbh_phone_line").append(""); $("#clbh_phone_line").append(""); }); }, "html"); return !1 } function CallYes(userid) { $('.clbh_banner-h1').html("Мы рады что смогли Вам помочь!"); $.get("/engine/mod/ajax/sipnet.php", {action: 'call_yes', user_id:userid}, function(c) { $(".telo").html(c) }, "html"); return !1 } function CallNot(userid) { $('.clbh_banner-h1').html("Мы готовы загладить разочарований!"); $.get("/engine/mod/ajax/sipnet.php", {action: 'call_not', user_id:userid}, function(c) { $(".telo").html(c) }, "html"); return !1 } function SendCallGGG(uin) { var user_phone = $('#clbh_phone').val(); var operator = document.getElementById("clbh_oper"); // Свободных операторов var body = document.getElementById("clbh_banner_content"); // Переменная тела окна var one = "1"; var result; // Переменная оставшихся операторов //var timer = '
Дни
Часы
Минуты
Секунды
'; var timer = '
'; $.ajax({ type: "GET", url: "/engine/mod/ajax/sipnet.php", data:{ action:'send_call', user_id:uin, user_phone:user_phone }, success: function (html) { //$('#clbh_timer_result').countdown({startTime: '03:23:17:25'}); $("#clbh_banner-button").remove(); $('#gl_timer').timeTo(100, function(){ alert('Countdown finished'); }); result = operator - one; //body.innerHTML=timer; operator.innerHTML=1; //DLEalert(html); } }); return false; } $.getScript('/engine/mod/js/jquery.maskedinput.min.js'); var mass = ['//online-windows.ru/js/forms.js']; for(var i=0;i * @link http://pafnuty.name/ * @link https://twitter.com/pafnuty_name */ var doc = $(document); doc // ajax-отправка формы + эффекты .on('submit', '[data-uf-form]', function () { var $this = $(this), laddaLoad, options = { beforeSubmit: ufStart, success: ufDone, }; $this.ajaxSubmit(options); return false; }) // Открытие ajax-окна с формой .on('click', '[data-uf-open]', function (e) { var $this = $(this), src = $this.data('ufOpen'), data = $this.data('ufSettings'); $.magnificPopup.open({ items: { src: src, }, focus: '.uf-input-first', type: 'ajax', ajax: { settings: { data: data } } }); return false; }) // Убираем класс с из инпута с ошибочным заполнением .on('keyup input', '.uf-input-error', function (e) { var $this = $(this); if (e.type == 'input') { doc.off('keyup', '.uf-input-error'); } if ($this.val().length) { $this.removeClass('uf-input-error'); } }); // Функция, выполняемая перед отправкой формы function ufStart(formData, jqForm) { laddaLoad = jqForm.find('.ladda-button').ladda(); laddaLoad.ladda('start'); return true; } // Функция, выполняемая после удачной отправки формы function ufDone(responseText, statusText, xhr, $form) { var $responseText = $(responseText), responseResult = ($responseText.is('form')) ? $responseText.html() : responseText; if (statusText == 'success') { laddaLoad.ladda('stop'); $form.html(responseResult); } } jQuery(document).ready(function ($) { var $inlineUniform = $('[data-uf-inline]'); if ($inlineUniform.length) { $.each($inlineUniform, function (index, val) { var $this = $(this), url = $this.data('ufInline'), data = $this.data('ufSettings'); $.ajax({ url: url, data: data, }) .done(function (data) { $this.html(data); }); }); }; });