1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| $(function(){
var formulaire = $("#themes");
formulaire.on('submit',function(event) {
event.preventDefault();
//formulaire.on('submit',function() {
var prenom00 = formulaire.find("input[name=prenom]");
var prenom = $.trim(prenom00.val());
var mail = formulaire.find("input[name=email]");
var email = $.trim(mail.val());
document.getElementById("emailtarget").innerHTML = email;
var popID = $(this).data('rel');
var popWidth = $(this).data('width');
$('#' + popID).fadeIn("fast").css({ 'width': popWidth}).prepend('<a href="#" class="close"><img src="styles/images/close_pop.png" class="btn_close" title="Fermer la fenêtre" alt="Fermer" /></a>');
var popMargTop = ($('#' + popID).height() + 80) / 2;
var popMargLeft = ($('#' + popID).width() + 80) / 2;
$('#' + popID).css({
'margin-top' : -popMargTop,
'margin-left' : -popMargLeft
});
$('body').append('<div id="fade"></div>');
$('#fade').css({'filter' : 'alpha(opacity=70)'}).show();
return true;
//-----------------------------------------------------
var datastring = "prenom="+prenom+"&email="+email;
$.ajax({
type: "POST",
url: "insert.php",
data: datastring,
success: function(responseText) {
if(responseText == 1) {
return false;
}else if(responseText == '') {
return true;
}
}
});
//--------------------------------------------------------
});
$('body').on('click', 'a.close, #fade', function() {
$('#fade , .popup_block').fadeOut("fast",function() {
$('#fade, a.close').remove();
});
return true;
});
}); |
Partager