I would like to prompt a string. My additional need is to not escape by pressing the ENTER or ESC key. With this method ENTER works (doesn't escape):
var f1 = '';
while (f1.length < 1) {
f1 = prompt('Please give a value of the string!');
}
How can I reach, that this script doesn't escape by pressing ESC either? Thanks, hazazs