Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. jQuery.fn.showQuote = function(selector, quote) {
  2. $(selector).append("<b>" + quote + "</b>")
  3. }
  4.  
  5. jQuery.fn.loadingDistraction = function (){
  6. var quotes= [
  7. "Words go here.",
  8. "Blar blar, talking.",
  9. "Speaking here, talk talk."
  10. ];
  11.  
  12. // ======================================
  13. // Do not change anything below this line
  14. // ======================================
  15. var Q = quotes.length;
  16. var random_index = Math.round(Math.random()*(Q-1));
  17.  
  18. $.fn.showQuotation("#quote_box", quotes[random_index]);
  19. }
Add Comment
Please, Sign In to add comment