Как увеличить значение переменной в JavaScript
var a = 1;
function increase(){
var textBox = document.getElementById("text");
textBox.value = a;
a++;
}
Santino