jQuery(document).ready(function($) {
$('#form-kontakt').submit(function(e){
e.preventDefault();
$.post('pliki/kontakt-user.php', $(this).serialize(), function(dane) {
dane1 = $.parseJSON(dane);
//// alert(dane1['blad_ile']);
////console.log("fgdfgdfgdfgdf");
var blad_ile = dane1['blad_ile'];
////alert(blad_ile);
if(blad_ile != "blad-zapytania"){
if(blad_ile != 'blad-email'){
if(blad_ile != 'blad'){
if(blad_ile == 'sukces'){
$('#kontakt').html("<aside class='alert alert-success' style='width:300px;'><p>Wiadomo?? Wys?ana !</p></aside>");
alert("Wiadomo?? Wys?ana !");
//location.reload();
//function loguj(){
////window.location.href = 'index.html';
// }
//setTimeout(function(){windows.location.reload();},1000);
}
}else{
$('#kontakt').html("<aside class='alert alert-error' style='width:300px;'><p>B??d!</p></aside>");
//alert("Strona zablokowana !");
}
}else{
$('#kontakt').html("<aside class='alert alert-error' style='width:300px;'><p>B??d e-mail !</p></aside>");
alert("B??d e-mail !");
}
}else{
$('#kontakt').html("<aside class='alert alert-error' style='width:300px;'><p>B??d Zapytania mysql !</p></aside>");
alert("B??d Zapytania mysql !");
}
});
return false;
});
});
|