Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <head>
  2. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.min.js"></script>
  3. </head>
  4.  
  5. <body>
  6. <p id="quote">loading...</p>
  7. <script>
  8.  
  9. function quoteGrab(data){
  10. //Data is returned as array, we want the quote key
  11. $("#quote").text(data['quote']);
  12. }
  13.  
  14. </script>
  15.  
  16. <!-- SCRIPT LOADS AFTER FUNCTION OR UNDEFINED EXCEPTION -->
  17. <script src="http://quotesondesign.com/api/3.0/api-3.0.json?callback=quoteGrab"></script>
  18.  
  19. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement