Revision: 72174
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at May 26, 2017 04:42 by apphp-snippets
Initial Code
<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>
Initial URL
http://www.apphp.com/index.php?snippet=javascript-display-random-quotes
Initial Description
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.
Initial Title
Display Random Quotes with JavaScript
Initial Tags
javascript
Initial Language
JavaScript