• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

FAQ wie bei "Where the hell is matt"

Status
Für weitere Antworten geschlossen.
D

Domenikhofer

Guest
Hallo

Ich suche eine Art spoiler oder Rollout-text wie man ihn auf der FAQ seite vom where the hell is matt sieht:

Klick

Wäre euch extrem dankbar für eine lösung oder einen ansatz. :mrgreen:
 
Werbung:
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");
});
});
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben