JavaScript On-click

derk

New Member
I have this document, which allows me to have a multi-choice selection questionnaire with progression on-click.How do I go about having images in-place of the words here? (and still have the mechanic where, once the [image] is clicked, the next question is brought up)I tried already some basic div manipulation with f.e the UL/H1 setting background images, but as you expect, this lead me to nothing of use.I'm curious if it is because 'caption' needs to be something else.\[code\] var questions = [ { caption: 'Question 1?', answers: [ { caption: 'It sucks!' }, { caption: 'It rules!' } ] }\[/code\]The rest of my code in-progress found at:http://jsfiddle.net/Rbzy6/19/
 
Back
Top