You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a lack on jQuerys fadeIn() function. The in-faded element did not get the display set by CSS.
My CSS sets a.startQuiz (a.button) to display:block;, but the fadeIn() function sets it to inline style display:inline;. We can not overwrite it with display:block !important; as the buttons has to be display:none; after starting the quiz.
There's a lack on jQuerys fadeIn() function. The in-faded element did not get the display set by CSS.
My CSS sets a.startQuiz (a.button) to display:block;, but the fadeIn() function sets it to inline style display:inline;. We can not overwrite it with display:block !important; as the buttons has to be display:none; after starting the quiz.
You can repair this by fadeIn().css('display', '') also see here http://stackoverflow.com/questions/1091322/how-to-fade-to-display-inline-block
I did not check other elements, just started to format my quiz.
Quick solution so far is swap this anchor with a BUTTON.
The text was updated successfully, but these errors were encountered: