Firefox: Stop never-ending popup alerts
Posted
by cbp
on Super User
See other posts from Super User
or by cbp
Published on 2010-01-07T11:45:44Z
Indexed on
2010/03/29
15:03 UTC
Read the original article
Hit count: 239
firefox
|JavaScript
It is possible for javascript to get stuck in a loop of opening up alerts. For example:
for(var i=0;;i++)
alert('This will never stop');
Is there a way to gracefully stop this in firefox, without having to kill the whole process?
© Super User or respective owner