Widget:HoverCard

From Unforgotten Realms Wiki
Revision as of 01:40, 14 December 2016 by imported>Pillowkeeper (testing)
Jump to navigationJump to search

<body>

 <script>
   (function() {
     var quotes = [
       {
         text: "text1",
       },
       {
         text: "text2",
       },
       {
         text: "text3",
       },
       {
         text: "text4",
       },
       {
         text: "text5",
       }
     ];
     var quote = quotes[Math.floor(Math.random() * quotes.length)];
     document.getElementById("text").innerHTML =

'

' + quote.text + '

';

   })();
 </script>

</body>