/ Published in: JavaScript
This snippet code allows you to prevent the viewer from being able to right-click on your page. This can discourage the average user from borrow images or code from your site.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script type="text/javascript"> writeRandomQuote = function () { var quotes = new Array(); quotes[0] = "Action is the real measure of your intelligence."; quotes[1] = "The baseball has a great advantage over cricket of being sooner ended."; quotes[2] = "Every goal, every action, every thought, every feeling one experiences, whether it be consciously or unconsciously known, is an attempt to increase one’s level of peace of mind."; quotes[3] = "A good head and a good heart are always a formidable combination."; var rand = Math.floor(Math.random()*quotes.length); document.write(quotes[rand]); } writeRandomQuote(); </script> <script type="text/javascript">writeRandomQuote();</script>
URL: http://www.apphp.com/index.php?snippet=javascript-display-random-quotes