Okay. I am having a difficult time figuring this out. I have a game where there is a question and four images, answering the question requires clicking on the correct image.
There are lots of problems with the code ( i know ) I was just trying to break it down to get a few things working.
How do i get the program to better talk to it's self, for example, right now if i click on any image i'll get the reaction based on the image[2] = true; . But I can't seem to write an if statement that says if this image is clicked then do something. Any help or suggestions to get me over this hump would be great.
<div class="game">
<div class="round round1">
<div class="question"> If put in alphabetical order, which image would come third? </div>
<div class="image image0" > <img src="images/image1.gif" /></div>
<div class="image image1" ><img src="images/image2.gif" /> </div>
<div class=" image image2" > <img src="images/image3.gif" /></div>
<div class="image image3" > <img src="images/image4.jpg" /></div>
</div>
</div>
<script>
var image = [false, false, false, false];
var imageName = ["Car Image","Boat Imagege","Scooter Image","Snow Mobile Image"];
$(".image0").click(function() {
image[0] = true;
$(".question").replaceWith("The " + imageName[0] + " image is incorrect" );
$('.image0').css({"background-color":"red"});
});
$(".image1").click(function() {
image[1] = true;
$(".question").replaceWith("The " + imageName[1] + " image is incorrect" );
$('.image1').css({"background-color":"red"});
});
$(".image2").mouseup(function() {
image[2] = true;
$(".question").replaceWith("Correct, the answer is <b>" + imageName[2] + "</b> image" );
$('.image2').css({"background-color":"#95d456"});
});
$(".image3").click(function() {
image[3] = true;
$(".question").replaceWith("The " + imageName[3] + " image is incorrect" );
$('.image3').css({"background-color":"red"});
});
</script>