This holiday break gave me the time that I need to push out a next release of jQuizMe.
Check it out at Google Code, jQuizMe.
Please leave your feedback in the comment box.
What REALLY is Data Science? Told by a Data Scientist - By Joma Tech
Writing perfect code is a challenging process. That's where code reviews come in to help…
"The Next Leap: How A.I. will change the 3D industry - Andrew Price - Blender"
"Captain Disillusion: World's Greatest Blenderer - Live at the Blender Conference 2018 - CaptainDisillusion"
My 5 Favorite Linux Shell Tricks for SPEEEEEED (and efficiency) - By tutoriaLinux > What's…
View Comments
Great work here! We have a need to show information for wrong answers as well as different information for correct answers. Is this something that can be done with a hack or two?
Thank you in advance!
Hey John,
It's it something similar to using this.
retry and ansSelInfo Demo
Is there a way to have the quiz end when a user answers 6 questions correctly or incorrectly in a row?
It should be something like this...
var streak = 4; var options = {}; options.statusUpdate = function( info, $quiz ){ if( !info.hasQuit || streak > 2+info.currIndex ){ return; } var isCurrentAnswerCorrect = info.problem[ info.currIndex ].isCorrect; //get last 4 problems var arr = info.problem.slice( info.currIndex - streak, info.currIndex ); var allSame = true; // see if the last 4 problems have the same value. $.each( arr, function( i, obj ){ allSame = allSame && (isCurrentAnswerCorrect == obj.isCorrect); }); if( allSame ){ info.quitQuiz(); } }; $( '#quizArea' ).jQuizMe( quiz, options );Very nice plugin. I'd like to suggest a feature, with answer checking disabled, let user go back (and forth) to correct their answers. I also noticed that with answer checking disable, no answers are recorded and no stats are calculated, as as tryshakespeare noted below. Also supporting multile answers in a multiplist question would be lovely.
Thank you for your feedback. I'll look into your suggestions.
really nice plugin. Thanks http://www.inspiraghtech.com
very well! http://www.jnworld.cn