Posted 16 years ago
·
Author
The following code I find very useful (and entertaining.) It will literally "shake" the screen of anyone trying to copy anything from your homepage.
3 IMPORTANT NOTES:
After placing this code, you have to go into safe mode to post more html/javascript code.
Where it says "Shake It Baby!" you put your text in the "" = leave those marks, too.
And you cant put this symbol in the message pop-up, either = '
-Nino
3 IMPORTANT NOTES:
After placing this code, you have to go into safe mode to post more html/javascript code.
Where it says "Shake It Baby!" you put your text in the "" = leave those marks, too.
And you cant put this symbol in the message pop-up, either = '
-Nino
<script type="text/javascript">
var msgtext='Shake it, baby!';
function shakewindow() {
var x=10
if (document.all||document.layers) {
for (i=0;i,i<20;i++){
window.moveBy(0,x)
window.moveBy(x,0)
window.moveBy(0,-x)
window.moveBy(-x,0)
}
}
alert(msgtext);
return false;
}
document.oncontextmenu=shakewindow;
</script>