Slick Quiz Plugin

Slick Quiz Plugin

Hello - 

I am using a plug called Slick Quiz here is the github link  https://github.com/QuickenLoans/SlickQuiz

But of course i need to modify it in a way that i keep getting stuck. 

I need the quiz the to be able to be taken 10 times for each session, the quiz is actually fired after a video is played. So if they watch the video again they could take the quiz again. 

My trouble is having the quiz refresh without refreshing the entire page and what i would need to add to put them back at the beginning. I have a good idea on how to count the number of times it was taken with the code below but i am not sure how to implement it into this i can get it to work stand alone by it self with just using intervals. But any help or tips would be greatly appreciated... 

function countFunction() {  countFunction.calledTimes++;
 alert( "You have taken the quiz " + countFunction.calledTimes + " of 10 times" ); } myFunction.calledTimes = 0;
Thanks in advance!