Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making the button activate the function to change the color to a random color, but when it's green, i want the button to stop changing the color.

<html>
<head>

<script type="text/javascript">
function roll1() {
rand = Math.ceil(Math.random() * 6);
die = document.getElementById("die1");

if (rand >= 1 && rand <= 3) {
    die.innerHTML = "<p>'GREEN'<\/p>";
} else if (rand == 4 || rand == 5) {
    die.innerHTML = "<p>'GREEN'<\/p>";
} else if (rand == 6) {
    die.innerHTML = "<p>'RED'<\/p>"
}
}
</script>

</head>

<body>

<button onclick="roll1()">Roll Dice</button>

<table>
<tr>
<td style="width:55px; height:55px;">

<p id="die1">'YELLOW'</p></td>

</tr>
</table>

</body>
</html>

i also don't want the button to disappear, because it still needs to do something else that is not in this code.

share|improve this question
Do you mean that if the die is green, pressing the button will have no effect? – BenM Jan 27 at 21:11
You already know when the button is "green", you set the text to green? Is this what you're trying to do FIDDLE ?? – adeneo Jan 27 at 21:14
no, i mean that if the output is 'GREEN' the button will no longer activate the function, but still be pressable – Vinnie Caprarola Jan 27 at 21:15
A simple flag would do that, see salexch's answer ! – adeneo Jan 27 at 21:16
i want the *OUTPUT* to display the *TEXT* 'GREEN', not the button to be green – Vinnie Caprarola Jan 27 at 21:17
show 1 more comment

2 Answers

var stop_flag = false;

function roll1() {
    if (stop_flag)
        return false;

    rand = Math.ceil(Math.random() * 6);
    die = document.getElementById("die1");

    if (rand >= 1 && rand <= 3) { 
        stop_flag = true;
        die.innerHTML = "<p>'GREEN'<\/p>";
    } else if (rand == 4 || rand == 5) {
        die.innerHTML = "<p>'GREEN'<\/p>";
    } else if (rand == 6) {
        die.innerHTML = "<p>'RED'<\/p>"
    }
}
share|improve this answer
AMAZING - Works great, thanks! – Vinnie Caprarola Jan 27 at 21:28
@user2016305 you welcome – salexch Jan 27 at 21:35

You could add the attribute disabled, so the button is no longer clickable.

share|improve this answer
That's what I thought too, but based on the comments, the button should remain clickable. I removed my answer... – Jacco Jan 27 at 21:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.