1 2 3 4 5 6 7 8 |
if (whatever == 0) { document.getElementById('mytextboxid').style.background = "#FF9494" } else { document.getElementById('mytextboxid').style.background = "#FFF"; } |

1 2 3 4 5 6 7 8 |
if (whatever == 0) { document.getElementById('mytextboxid').style.background = "#FF9494" } else { document.getElementById('mytextboxid').style.background = "#FFF"; } |
© 2022 CODEHAVEN