Title: Tablepress Auto-Refresh
Last modified: August 21, 2016

---

# Tablepress Auto-Refresh

 *  Resolved [mjawa](https://wordpress.org/support/users/mjawa/)
 * (@mjawa)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/tablepress-auto-refresh/)
 * Howdy,
 * I know this topic was brought up [before](http://wordpress.org/support/topic/auto-refresh-1),
   but taking a look at the post that was mentioned from the [WP-Table Reloaded](http://wordpress.org/support/topic/plugin-wp-table-reloaded-how-to-refresh-table-without-refreshing-whole-page)
   kind of confused me since I’m not too familiar with AJAX/Wordpress Plugin Creation.
   I was wondering if you could point me in the right direction so I could start
   to build this?
 * Here’s what I’m trying to do – We stream audio play-by-play on our site, in addition,
   we also have some stats that are dynamically loaded into a table on a game post
   like this one – [http://tsrnsports.com/scoreboard/test/](http://tsrnsports.com/scoreboard/test/).
   We need the last table on that post to auto-reload every 5 minutes without disrupting
   the player at top of the page.
 * Could I set the tablepress into a div with an id and use something like the [Ajaxify](http://wordpress.org/plugins/ajaxify-wordpress-site/)
   plugin to accomplish this?
 * Thanks for your help in advance, this is a great plugin and will save me countless
   hours of coding.
 * [http://wordpress.org/plugins/tablepress/](http://wordpress.org/plugins/tablepress/)

Viewing 13 replies - 1 through 13 (of 13 total)

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542081)
 * Hi,
 * thanks for your question.
 * Sounds like you are looking for this TablePress Extension: [http://tablepress.org/extensions/table-ajax-refresh/](http://tablepress.org/extensions/table-ajax-refresh/)
 * Regards,
    Tobias
 *  Thread Starter [mjawa](https://wordpress.org/support/users/mjawa/)
 * (@mjawa)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542093)
 * Wow…I feel somewhat dumb now…I somehow completely missed that while looking through
   the site. You’ve truly thought of everything!
 * Thank you so much! This is a great help, I’ll have to talk my boss into sending
   you a donation soon. You’re awesome!
 * Cheers,
    Manny
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542136)
 * Hi,
 * no problem, you are very welcome! 🙂 Good to hear that this helped!
 * And thanks for wanting to donate, I really appreciate it!
 * Regards,
    Tobias
 *  [hmjha](https://wordpress.org/support/users/hmjha/)
 * (@hmjha)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542397)
 * But sir this extension is not working on my localhost. Please help!!!
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542398)
 * Hi,
 * thanks for your post, and sorry for the trouble.
 * Can you please provide some details? What exactly is not working? Are you seeing
   error messages in the JS console in the brwoser?
 * Regards,
    Tobias
 *  [hmjha](https://wordpress.org/support/users/hmjha/)
 * (@hmjha)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542399)
 * Sir, There is not showing any error.
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542400)
 * Hi,
 * ok, then please check if the Extension is really installed and activated as a
   plugin, and that the table Shortcode has the necessary parameter.
 * If that’s not it, please try to set up a test site on the internet, where I can
   then take a direct look. Debugging this on your localhost is not really possibe
   🙁
 * Regards,
    Tobias
 *  [hmjha](https://wordpress.org/support/users/hmjha/)
 * (@hmjha)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542401)
 * Sir, It’s working on my one website but I don’t know why it’s not working on 
   another website. Is there may be other problem?
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542402)
 * Hi,
 * I would really need to investigate this directly on that other website, but I
   can only do that if that site is publicly available and if you post a link.
 * Regards,
    Tobias
 *  [hmjha](https://wordpress.org/support/users/hmjha/)
 * (@hmjha)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542403)
 * Please check this link which is not working correctly
    [http://www.newsyaps.com/election/](http://www.newsyaps.com/election/)
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542404)
 * Hi,
 * from what I can see, the problem is some JavaScript code in your theme, in the
   file /wp-content/themes/alyoum2/library/js/scripts.js
 * At the end, it has this code
 *     ```
       jQuery(document).ready(function() {
         "use strict";
         var inputs = document.getElementsByTagName("input");
         for(var i = 0;i < inputs.length;i++) {
           if(inputs[i].getAttribute("type") === "text") {
             inputs[i].setAttribute("x-webkit-speech");
           }
           if(inputs[i].getAttribute("type") === "email") {
             inputs[i].setAttribute("x-webkit-speech");
           }
         }
       });
       ```
   
 * which however has a bug in the `setAttribute` calls, where the value is missing.
   
   Please try again after removing that code.
 * Regards,
    Tobias
 *  [hmjha](https://wordpress.org/support/users/hmjha/)
 * (@hmjha)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542405)
 * Thanks Sir, Now it’s working…
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542406)
 * Hi,
 * no problem, you are very welcome! 🙂 Good to hear that this helped!
 * Best wishes,
    Tobias
 * P.S.: In case you haven’t, please [rate TablePress](http://wordpress.org/support/view/plugin-reviews/tablepress)
   here in the plugin directory. Thanks!

Viewing 13 replies - 1 through 13 (of 13 total)

The topic ‘Tablepress Auto-Refresh’ is closed to new replies.

 * ![](https://ps.w.org/tablepress/assets/icon.svg?rev=3192944)
 * [TablePress - Tables in WordPress made easy](https://wordpress.org/plugins/tablepress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tablepress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tablepress/)
 * [Active Topics](https://wordpress.org/support/plugin/tablepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tablepress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tablepress/reviews/)

 * 13 replies
 * 3 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [12 years ago](https://wordpress.org/support/topic/tablepress-auto-refresh/#post-4542406)
 * Status: resolved