You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.1 KiB
JavaScript

3 years ago
3 years ago
$(document).ready(function() {
var counter = 0;
$("#forniture1").click(function(){
counter ++;
$('#result').html(counter);
$("#forniture1").hide();
$("#child1").show();
3 years ago
winning();
3 years ago
});
$("#forniture2").click(function(){
counter ++;
$('#result').html(counter);
$("#forniture2").hide();
$("#child2").show();
3 years ago
winning();
3 years ago
});
$("#forniture3").click(function(){
counter ++;
$('#result').html(counter);
$("#forniture3").hide();
$("#child3").show();
3 years ago
winning();
3 years ago
});
$("#forniture4").click(function(){
counter ++;
$('#result').html(counter);
$("#forniture4").hide();
$("#child4").show();
3 years ago
winning();
3 years ago
});
$("#forniture5").click(function(){
counter ++;
$('#result').html(counter);
$("#forniture5").hide();
$("#child5").show();
3 years ago
winning();
3 years ago
});
$("#forniture6").click(function(){
counter ++;
$('#result').html(counter);
$("#forniture6").hide();
$("#child6").show();
3 years ago
winning();
3 years ago
});
3 years ago
function winning() {
if (counter === 6) {
$('#win').html("you won!");
//alert ("you won");
} };
3 years ago
});;
3 years ago