View difference between Paste ID: qhuW8GXC and 7fuGrWw5
SHOW: | | - or go back to the newest paste.
1
var bot_on = 0;
2
function botbutton()
3
{
4
    console.log("pressed,boton ="+bot_on);
5
    var btn = document.getElementById('turnBot');
6
7
    if(bot_on)
8
    {
9
            bot_on=0;
10
            btn.style.borderColor = "#449D44";
11
            btn.style.backgroundImage = "linear-gradient(to bottom, #5CB85C 0%, #449D44 100%)";
12-
            btn.value = "Stop";
12+
            btn.innerHTML = "Start";
13
	else {
14
            bot_on=1;
15
            btn.style.borderColor = "#C12E2A";
16
            btn.style.backgroundImage = "linear-gradient(to bottom, #D9534F 0%, #C9302C 100%)";
17-
            btn.value = "Start";
17+
            btn.innerHTML = "Stop";
18
    }
19
    return 0;
20
}