SoFunction
Updated on 2025-04-03

Several interesting Javascript Hacks

1. Edit web content directly in the browser
Copy the codeThe code is as follows:
javascript:='true';='on'; void(0);
When visiting any website and entering the above code in the address bar, the current web page has become editing mode.

2. Dancing pictures
Copy the codeThe code is as follows:
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=; DIL=; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; ='absolute'; =((R*x1+i*x2+x3)*x4+x5)+"px"; =((R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);


3. Swaying around (I can't test it here)
Not only you, but the browser doesn't like this javascript so much. After running this code in the address bar, the browser will quickly sway. The code is as follows:
Copy the codeThe code is as follows:

javascript:function flood(n) {if () {for (i = 200; i > 0;i--){for (j = n; j > 0; j--) {(1,i); (i,0);(0,-i); (-i,0); } } }}flood(6);{ var inp = "D-X !msagro na dah tsuj resworb rouY"; var outp = ""; for (i = 0; i <= ; i++) {outp = (i) + outp ; } alert(outp) ;}; reverse

If this code is invalid, change ">" to ">", "&It;' to "<".
4. Calculator
Enter the following code in the address bar to implement four simple operations:
Copy the codeThe code is as follows:

javascript: alert(34343+3434-222);

In fact, this code can continue to be simplified, for example:
javascript: 34343+3434-222
5. Anti-fishing verification
The URL provided by some phishing websites is inconsistent with the URL of the web page itself. You can use the following code to verify it. When the two URLs are too different, you should be a little careful:
javascript:alert("The actual URL is:tt" + + "//" + + "/" + "nThe address URL is:tt" + + "n" + "nIf the server names do not match, this may be a spoof.");