Quelqu'un sait comment faire pour basculer le texte le texte html d'une balise d'ancrage à l'aide de jQuery. Je veux un point d'ancrage qui quand on clique dessus le texte alterne entre "Montrent le Fond" & "Afficher le Texte" ainsi que la décoloration et un autre div. C'était ma meilleure supposition:
$(function() {
$("#show-background").click(function () {
$("#content-area").animate({opacity: 'toggle'}, 'slow');
});
$("#show-background").toggle(function (){
$(this).text("Show Background")
.stop();
}, function(){
$(this).text("Show Text")
.stop();
});
});
Merci à l'avance.