twitter.js 366 B

12345678910111213
  1. /**
  2. * Javascript functions used to fetch the twitter feed.
  3. *
  4. * @file WHMCS Six Theme Twitter Javascript Function
  5. * @copyright Copyright 2020 WHMCS Limited
  6. */
  7. jQuery(document).ready(function() {
  8. WHMCS.http.jqClient.post("index.php?rp=/announcements/twitterfeed",
  9. function(data) {
  10. jQuery("#twitterFeedOutput").html(data);
  11. });
  12. });