Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
>
<
a
href
="javascript:void(0);"
>
Useless link
<
/a
>
<
/p
>
<
p
>
<
a
href
="javascript:void(document.body.style.backgroundColor='red');"
>
Click me to change the background color of body to red.
<
/a
>
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p> <a href="javascript:void(0);"> Useless link </a> </p> <p> <a href="javascript:void(document.body.style.backgroundColor='red');"> Click me to change the background color of body to red. </a> </p> </body> </html>
Result:
Privacy Policy