Leave Message
<script type="text/javascript"> window.onbeforeunload = confirmExit; function confirmExit() { return "Did you remember to click SAVE?"; } </script> (Paste above code after the <head> tag) ...
Symbol Symbol Description Name Code Number Code € Euro Symbol € € © Copyright © © ® Registered Trademark ® ® ™ Trademark Sign (TM) ™ - @ At Symbol - @ & Ampersand & & ¶ Paragraph ¶ ¶ - Hyphen - - – En Dash – – — Em Dash — ¬ Not Sign ¬ ¬ ‹ Single Left Pointing Angle ‹ - › Single Right Pointing Angle › - « Double Left Pointing Angle « « » Double Right Pointing Angle » » ← Left Arrow ← - ↑ Upward Arrow ↑ - → Right Arrow → - ↓ Downward Arrow ↓ - ♠ Black Spade Suit (Not available in Firefox) ♠ - ♣ Black Clubs Suit (Not available in Firefox) ♣ - ♥ Black Hearts Suit (Not available in...
How to disable right mouse click: <script language=JavaScript> <!-- var message="Sorry, function has been disabled."; /////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function("alert(message);return false") // --> </script> (paste above script after <head>...
In this post I will show you how to put a static image/logo in the bottom right corner of a web page. This script is based off of one I came across from COMODO, my preferred supplier of SSL certificates. ...