jquery - jQuizMe - Multilist answers arrange -


i using jquizme prepare questionnaire, 1 problem have listing answers multilist questions if correct answer of above.
here script:

multilist: [                {                  ques: "the answer is:",                  ans: "all of above",                  anssel: [answer 1","answer 2","answer 3","answer 4" ]                } 

the answers displayed as:

answer 1 answer 2 of above answer 3 answer 4 

i display as:

answer 1 answer 2 answer 3 answer 4 of above 

i appreciate suggestions.

insert null want answer in list. in case @ end.

jsfiddle http://jsfiddle.net/adiioo7/qwjbq/

html

<div id="quiz3"></div> 

js

$(function ($) {     var quiz3 = {         multilist: [{             ques: "question1?",             ans: "all of above",             anssel: ["answer 1", "answer 2","answer 3", "answer 4",null ]         }]     };     $("#quiz3").jquizme(quiz3); }); 

Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -