I want to create a webpage where if Chelsea has a greater goal count than Arsenal, Chelsea's score increases by 1, and vice versa. It is not working and I am not sure why - then again I only started learning JS/JQ a couple of days ago.
What's wrong with the code? Also note, nothing is ever logged in the console. :(
$(document).ready(function() {
$("#play").click(function(){
var chelsea = parseInt($('#chelsea-goals').val());
var arsenal = parseInt($('#arsenal-goals').val());
if (chelsea > arsenal) {
parseInt($('#score-chelsea').val())++;
console.log('Chelsea > Arsenal');
}
else if (arsenal > chelsea) {
parseInt($('#score-arsenal').val())++;
console.log('Arsenal > Chelsea');
}
else {
console.log('Scores were equal');
}
});
});
Also pardon the formatting - it is correct in my code - just doesn't look that nice on here.
UPDATE
<div class="scores" id="score-chelsea">0</div>
<div class="scores" id="score-arsenal">0</div>
<div class="goals" id="chelsea-goals">{{chelsea.goals}}</div>
<div class="goals" id="arsenal-goals">{{arsenal.goals}}</div>
<button id ="play"></button>