Guest User

Untitled

a guest
Oct 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. //TRAITEMENT ENVOIE INVITATION
  4. $("#amis_commun_liste .afficher_plus_modal").bind('click',function f(){
  5. var afficher_plus_modal = $(this).attr("class");
  6. $(this).unbind('click',f);
  7. $.ajax({
  8. type: "post",
  9. url: "voir_profil_includes/func_infos.php",
  10. data: {
  11. "afficher_plus_modal": afficher_plus_modal,
  12. //I want to get here $_GET['id']
  13. },
  14. beforeSend: function() {
  15. $("#amis_commun_liste .afficher_plus_modal").html("En cours");
  16. },
  17. success: function(data) {
  18. if (data!="success") {
  19. alert(data);
  20.  
  21. }
  22. }
  23. });
  24. });
  25.  
  26. });
Add Comment
Please, Sign In to add comment