var google = true; $(document).ready(function(){ $('#contactFormSend').on('submit', function(evt){ evt.preventDefault(); $(this).find('[name]').removeClass('error'); $(this).find('.ajaxInfo').hide(); var k = [ 'name', 'question' ], good = true; if ( /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test( $('[name="contact"]').val() ) == false && $('[name="contact"]').val().replace(/[^\d]/, '').length < 9 ){ $('[name="contact"]').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(){ });