
Funny JavaScript Effects in Web Browser
( 1 ) Dancing Browser :
It is a small Java Script that causes your browser move to different positions
Recommended: Internet Explorer, Mozilla Firefox web browsers
> Open your browser and maximize the browser window
> Copy and paste the following code into your address bar
javascript:a=0;x=0;y=0;setInterval("a+=.01;x=Math.cos(a*3)*200;y=
Math.sin(a*2)*2;moveBy(x,y)",2);void(0)
...