Hallo martin,
kann mir jemand bitte ein script geben, das die browser-
funktion abbrechen ausführt bzw genauso arbeitet.
..und möglichst von allen browsern akzeptiert wird.
versuch doch mal dies hier:
if(self.stop)
stop();
else if(document.execCommand)
document.execCommand('Stop');
stop() sollte in NS4, NS6, Mozilla und Opera funktionieren, execCommand('Stop') im IE5+.
Grüße, Stefan