57 comments found.
i bought it and tried to install it twice, through wordpress and manually through go daddy. no luck.
It’s standalone script, not wordpress plugin.
is there a tutorial of how to use it?
Where do i put all the files?
IE 9
Hi! I’m interested in buying this script, but I want to make sure I’ll be able to give feedback as the user selects an answer.
So write after the user clicks on his answer a message comes up saying ” Wrong answer. Try again…” with a buzzer sound and an image.
Thanks 
Yes, you need modify some lines of code.
Thanks for your quick response! I bought it. Could you guide me code I need to add?
Open sliding.quiz.js , go to line 168. In the else statement add following code:
ans = rightAnswers[thisAnswer.parent().attr(“question”)]; if(jQuery.inArray(thisAnswer.attr(‘answer’), ans) == -1){ alert(‘Wrong’); }
Thanks! I really appreciate your help
I’m trying to add an image and sound to that message. Could you help me trigger the “explanation” instead of the alert box?
Ok, got it ! very easy.
I just replaced the content of this var :
var score = Math.round((numOfRightAnswer / numOfQuestions) * 100);
by
var score = (numOfRightAnswer)+ ’ good answers on ’ +(numOfQuestions);
and then removed the % down in the “resultContent” var
Hi,
Great quiz, exactly what I was looking for.
Just a question : Is there a way to count good answers rather than dispay a percentage of good answers ? I mean something like “5 good answers on 7” rather than “You’ve scored 71%”.
Many thanks in advance.
Hi!
this quiz of your is great!
I just want to tweak it a bit by configuring it to allow only one answer per per question. is that possible with your code as it is, or do i have to tweak a bit to make that happen? hope to hear from you!:-)
Oh, I will add this feature in the next version. Currently, you can use the version 2.0. This version allow only one answer per question.
How to hide the score from the result??
Open sliding.quiz.js line 384. And remove this code <h3 class=”skill”>’ + skill + ’ ’ config.locale[‘msg_you_scored’]’ ‘score’%. </h3>
I dont want to remove it, i want to remove only the score. Your file is encoded, but not mentioned somewhere.
Can I include or add Images on the questions?
Yes. Instead of input question, you can embed image by add html image tag.
Thanks, another question can I save the result ? or export it ? or use local storage of the browser to save it ? thanks
Yes, you can. But You need some change. Example: When click button Finish, call ajax submit the score to your server. Maybe in the next version, I will add this function.
Can I include or add Images on the questions?
Hi,
I am wondering if this script could serve as a “decision tree” for a user? For example, they are sent to a specific question, based on what their previous answer was. Obviously, it wouldnt need to be “scored”, it would simply finish by the user reaching an “end result”.
I want to buy this script! But my only concern is that the answers to the questions are shown to the user if they view the source code of the page! Do you plan to tackle this? Thanks
you can encrypt your question, example www.javascriptobfuscator.com/Default.aspx
Hi,
I’m very interested in this script but I’d like to know if I can somehow use videos within the questions. So that I can ask questions about specific videos.
Thanks in advance!
Greetings
Yes, you can. Just paste embed script to the question. EX: If you want embed youtube clip, paste the embed script like this: <iframe width=”560” height=”315” src=”http://www.youtube.com/embed/hLQl3WQQoQ0?list=UUomP_epzeKzvBX156r6pm1Q” frameborder=”0” allowfullscreen></iframe>
Great! Thanks for your quick response!
I hope there could be a version 2 of this. The name will be encoded then after the quiz, the name, answers and score will be saved into a database or excel file.
Is it possible to add text with a hyperlink to the results page of the quiz. I would like to include a link to where quiz takers can go for more information.
Thanks.
Does this script support function of counting answers (for example A is for 1point , B for 2 point and so on) for psychological quizes and so on ?
No 
Does this script support function of counting answers (for example A is for 1point , B for 2 point and so on) for psychological quizes and so on ?
After the test finish, I would the result of user will be writen on .txt files. I know that java can’t do it. But the result will be sent to a file .php which will be writen. How to do this?
By using Json Encode 2 array: rightAnswers and userAnswers. Then use ajax to send to server-side. I think you can write on txt file.