Comment mettre de l'effet sur jquery ?

Fermé
razily Messages postés 250 Date d'inscription lundi 9 mars 2009 Statut Membre Dernière intervention 4 décembre 2013 - 26 avril 2012 à 13:46
Zep3k!GnO Messages postés 2025 Date d'inscription jeudi 22 septembre 2005 Statut Membre Dernière intervention 18 novembre 2015 - 26 avril 2012 à 14:39
Bonjour,


bonjour à tous voilà , je tente de créer un code qui utilise ajax via jquery , j'arrive à afficher la page normalement et maintenant je souhaite mettre de l'effet notamment :


$(selector).show(speed,callback)



voici le code ici j'ai mis html(data) pour afficher le contenu :mais je ne sais pas comment appliquer l'effet en dessus :

 $(document).ready(function() {
          
      $.post("<?php  echo site_url('annonce/afficherAnnonce');?>",{},function(data){
          
          $('#things_table').html(data);
          
          
      })  ;
      
      
      $('ul #pagination-digg li a ').click(function(data){
          
          
        var this_url = $(this).attr("href");
        $.post(this_url,{},function(data){
            
           
           $('#things_table').html(data);
            
        });
          
          
          return false ;
          
      });
      
          
          
          
          
      });
     



donc ma question comment appliquer l'effet show sur


   $('#things_table').html(data);


merci

A voir également:

1 réponse

Zep3k!GnO Messages postés 2025 Date d'inscription jeudi 22 septembre 2005 Statut Membre Dernière intervention 18 novembre 2015 200
26 avril 2012 à 14:39
Pour le montrer, il faut d'abord le cacher ;)
$('#things_table').hide(); //On cache
$('#things_table').html(data); //On set le html
$('#things_table').show('slow'); //On affiche en slow

0