Hey guys put this in your url bar.

Apr 19, 2009
4,460
1,722
Code:
javascript:var spin = function(number){if(number == 360){number = 1;}document.body.setAttribute("style", "-webkit-transform: rotate(" + number + "deg); -o-transform: rotate(" + number + "deg); -moz-transform: rotate(" + number + "deg);"); setTimeout("spin(" + (number + .5) + ")", 250);};spin(1);void(0);

or this

Code:
javascript:void(document.body.setAttribute("style", "-webkit-transform: rotate(-180deg); -moz-transform: rotate(-180deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);"));

Have fun. :)
 

A Boojum Snark

Toraipoddodezain Mazahabado
aa
Nov 2, 2007
4,775
7,669
Just looking at the code, the first appears that it will make the entire page spin, and the other just turns it upsidedown. I haven't the interest to try it, but it's just javascript, it can't hurt your computer.
 

Zhan

L5: Dapper Member
Dec 18, 2010
208
244
Hah, these are cute!

To contribute, here's a bookmarklet that changes all the text on the page to black on white, which is useful for reading text on noisy image backgrounds, or if you just dislike reading white on black.

Code:
javascript: (function(){ var newSS, styles='* { background: white ! important; color: black !important } :link, :link * { color: #0000EE !important } :visited, :visited * { color: #551A8B !important }'; if(document.createStyleSheet) { document.createStyleSheet("javascript:'"+styles+"'"); } else { newSS=document.createElement('link'); newSS.rel='stylesheet'; newSS.href='data:text/css,'+escape(styles); document.getElementsByTagName("head")[0].appendChild(newSS); } } )();

it's just javascript, it can't hurt your computer.

Javascript may not hurt your computer, but it can steal your credit card number with some clever XSS.
 

lana

Currently On: ?????
aa
Sep 28, 2009
3,075
2,778
Come back quick reply box! I LOVE YOOOOOOOOOOU! Oh and it's gone...

I'm so lonely.
 

Pocket

Half a Lambert is better than one.
aa
Nov 14, 2009
4,694
2,579
Oh man. There's also one that makes all the elements detach and start swirling around. I wish I had saved that one.
 

Numerous

L4: Comfortable Member
Oct 14, 2009
150
72
I disagree with the notion that Java can't "hurt your computer", considering that I'm pretty sure it was a java program that ultimately forced me to use an on-screen keyboard to type just now...
And no, I do not have a touch screen.
 

Zhan

L5: Dapper Member
Dec 18, 2010
208
244
I disagree with the notion that Java can't "hurt your computer", considering that I'm pretty sure it was a java program that ultimately forced me to use an on-screen keyboard to type just now...

Javascript is not the same as Java.
 

Da_Man

L4: Comfortable Member
Aug 23, 2009
173
39
TPG you crazy motherfucker. YOu made my internet go upside down.
 
Sep 1, 2009
573
323
Nothing happened.....OH S*** MY COMPUTER ASSPLODED D:
 
Apr 19, 2009
4,460
1,722
Code:
javascript:var h='http://ec2-50-17-2-177.compute-1.amazonaws.com/js/',i,n,ss=['http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js',h+'Renderables.js',h+'Game.js'];for(i=0;i<ss.length;i++){n=document.createElement("script");n.src=ss[i]+'?'+Date.now();document.head.appendChild(n);}