javascript toggle
javascript toggle
Out of context: Reply #7
- Started
- Last post
- 7 Responses
- kappa0
that script AUTOMATICALLY toggles between one server and the other. You can easy change this by having a separate function change the "tState" from true to false
function setState(trueFalse) {
tState = trueFalse;
}setState(true);
//or
setState(false)