Categories: Frontend Tech

jQuizMe 2.1 Release Page

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.

Larry Battle

I love to program, and discover new tech. Check out my stackoverflow and github accounts.

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!

    • 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.

Share
Published by
Larry Battle

Recent Posts

What really is Data Science? Told by a Data Scientist

What REALLY is Data Science? Told by a Data Scientist - By Joma Tech

7 years ago

Video: How Water Towers Work

How Water Towers Work - Practical Engineering

7 years ago

Dev Tip: Simple tips to improve code reviews

Writing perfect code is a challenging process. That's where code reviews come in to help…

7 years ago

Video: How AI will change the 3d industry

"The Next Leap: How A.I. will change the 3D industry - Andrew Price - Blender"

7 years ago

Best Software Presentation for 2018

"Captain Disillusion: World's Greatest Blenderer - Live at the Blender Conference 2018 - CaptainDisillusion"

7 years ago

Dev Video: A Few Linux Shell Tips

My 5 Favorite Linux Shell Tricks for SPEEEEEED (and efficiency) - By tutoriaLinux > What's…

7 years ago