1 2 3 4 5 6 7 8 9 10 11 12 13 14
<html><head><title>Infinite Loop</title></head> <body onLoad="initNav(); initNav();"> <script language="JavaScript"> function initNav() { ++parent.i; if (parent.i < 10) window.location.href=window.location.href; } </script> </body></html>