other window functions
since javascript 1.0 (NS2)
- alert(), input = confirm(),
- x = prompt(text, default)
since javascript 1.1 (NS3)
since javascript 1.2 (NS4)
- back() which also moves back in frames while history.back() doesn't
- forward()
- setInterval() and clearInterval(), more efficient than periodic timeouts
- disableExternalCapture() & enableExternalCapture()
what is this good for? to disallow foreign wrapper frames
from reading our keypresses, maybe?
- find(string, respectcase, backwards)
- home()
- print()
- stop()
funny, IE5 tries to execute Javascript1.2, too. but the find() statement
above produces an error. also does home(), while print() works. wack.