var google = true; $(document).ready(function(){ $('#contactFormSend').on('submit', function(evt){ evt.preventDefault(); var k = [ 'name', 'question' ], good = true; $(this).find('[name]').removeClass('error'); $(this).find('p.ajaxInfo').hide(); if ( /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test( $('[name="mail"]').val() ) == false ){ $('[name="mail"]').addClass('error'); good = false; } if ( $('[name="phone"]').val().replace(/[^\d]/, '').length < 9 ){ $('[name="phone"]').addClass('error'); good = false; } for ( var i = 0; i < k.length; i++ ){ var obj = $('[name="'+ k[i] +'"]'); if ( obj.val().length <= 1 ){ good = false; obj.addClass('error'); } } if ( good ){ $.post( $(this).attr('action'), $(this).serialize(), function(response){ if (response.indexOf('false') === -1) { $('input, textarea').val(''); $('p.ajaxInfo.ok').show(); } else { $('p.ajaxInfo.error_send').show(); } }); } else { $('p.ajaxInfo.error').show(); } }); // Zabiegaj linkom # $('a[href=#]').click(function(e){ e.preventDefault(); }); }); $(window).load(function(){ $('.back-slider').owlCarousel({ lazyLoad : true, navigation : false, autoplay: true, animateOut: 'fadeOut', singleItem: true, items:1 }); $('.partner-carousel').owlCarousel({ items: 5, loop: true, center: true, autoplay: true, autoplayTimeout: 1700, autoplaySpeed: 1000, nvaRewind:false, dots:false }); });