1 2 3 4 5 6 7 8 9 10 11 12 13 14
| $('div.test a').click(function()
{
var loyer = $(this).parents('.affich_infos').children('.loyer').text();
var frais = $(this).parents('.affich_infos').children('.frais').text();
var duree = $(this).parents('.affich_infos').children('.duree').text();
$.post('includes/creeSession.php',{ post_loyer:loyer, post_frais:frais, post_duree:duree }, function(data)
{
reponse = (data=='sessionCree') ? 'cok' : 'nok'; // echo 'sessionCree' dans mon fichier creeSession.php
});
if(reponse=='cok') { return true; }
return false; // lien désactivé par défaut
}); |
Partager