Hallo
Ich suche eine Art spoiler oder Rollout-text wie man ihn auf der FAQ seite vom where the hell is matt sieht:
Wäre euch extrem dankbar für eine lösung oder einen ansatz. :mrgreen:
Hallo
Ich suche eine Art spoiler oder Rollout-text wie man ihn auf der FAQ seite vom where the hell is matt sieht:
Wäre euch extrem dankbar für eine lösung oder einen ansatz. :mrgreen:
Aus dem Quelltext kopiert ( http://wherethehellismatt.com/scripts/faq.js )
//below is the javascript for the FAQ show/hide
$(document).ready(function(){
$(„.FAQ dd“).css(„display“, „none“);
$(„.FAQ“).addClass(„js_enabled“);
$(„.FAQ dt“).click().toggle(function() {
$(this).next().show(„slow“);
}, function() {
$(this).next().hide(„slow“);
});
});