I'm building out a dice game using HTML5 and JavaScript.
I want a player to be able to select a dice with an onlclick. This will stop the dice from being rolled. The player should be able to onclick the dice button again which will allow the dice to be rolled again.
I have played with the code and the first onclick works but the second onclick does not.
Is this a limitation of one onclick per input button or should I use another HTML tag other than input button?
I want the game to be played without reloading the screen.
HTML5
<tr>
<th><input type="button" id="diceOne" onclick="selectDice(this.id,this.value)" value="0"></input></th>
<th><input type="button" id="diceTwo" onclick="selectDice(this.id,this.value)" value="1"></input></th>
<th><input type="button" id="diceThree" onclick="selectDice(this.id,this.value)" value="2"></input></th>
<th><input type="button" id="diceFour" onclick="selectDice(this.id,this.value)" value="3"></input></th>
<th><input type="button" id="diceFive" onclick="selectDice(this.id,this.value)" value="4"></input></th>
</tr>
Javascript
function selectDice(diceName,diceValue){
if (diceArray[diceValue][1]=="y"){
alert(diceArray[diceValue][1]);
document.getElementById(diceName).value = "Die now selected";
diceArray[diceValue][1]="n";
alert(diceArray[diceValue][1]);
}
else {
alert(diceArray[diceValue][1]);
document.getElementById(diceName).value = "Die not selected";
diceArray[diceValue][1]="y";
alert(diceArray[diceValue][1]);
}
}