Wie kann ich den HTML-Text eines Ankertags mit jQuery umschalten? Ich möchte einen Anker , dass , wenn zwischen dem Text wechselt geklickt Show Background
& Show Text
sowie Verblassen in & out andere div. Dies war meine beste Vermutung:
$(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();
});
});