jewlofthelotus / SlickQuiz

A jQuery plugin for creating pretty, dynamic quizzes.
http://jewlofthelotus.github.com/SlickQuiz
MIT License
400 stars 244 forks source link

Option to hide the title / desc once the quiz starts #68

Open jewlofthelotus opened 9 years ago

jewlofthelotus commented 9 years ago

https://wordpress.org/support/topic/hide-title-and-description-on-quiz-start?replies=2

Aybee commented 9 years ago

Maybe you simply can put a class to the main slickQuiz container after it started. "quiz_started".

corejh commented 8 years ago

If you are comfortable modifying the source code it's a pretty simple change:

add the following to the startQuiz function:

$quizName.fadeOut(300, function (){}); $quizHeader.fadeOut(300, function (){});