stop js script code example
Example 1: java stop script
public void onClick() {
if(condition == true) {
return;
}
string.setText("This string should not change if condition = true");
}
Example 2: in javascipt how to stop further page processing
if(someEventHappened) return; // Will prevent subsequent code from being executed
alert("This alert will never be shown.");