2009-08-19 7 views

Répondre

0
callBack: function(me) { 
    $(me).html('All done! <a href="http://www.google.com">This is my link to google!</a>').css('color','#090'); 
} 
2
$(me).html($('<a></a>').attr('href','www.google.com') 
          .text('All done! This is my link to google!') 
          .css('color','#090') 
       ); 
+0

Merci les gars c'est exactement ce dont j'avais besoin –

Questions connexes