I would like to autorefresh a certain div with the ID of blue everytime I update a post with that ID. I know the Jquery code looks something like this:
var auto_refresh = setInterval(
function ()
{
$('#blue').load('load.php').fadeIn("slow");
}, 10000);
Instead of loading "load.php" I would just like to reload the updated contents in the div which is done externally through the wordpress admin panel. Any help would be greatly appreciated. Thanks everyone!
The way to do this is by using the content in the external file which can be used within the loop or with out the loop using wp query. Hope this helps.
This was my Problem too, an idea:
You can create a JavaScript function which loads the content of your RSS file created by WordPress (http://domain.tld/feed/rss/) and puts the content of the new article with the id xyz in the div blue using
.html()
I will search now for an other Idea, but this example is just an idea, because i haven't find anything else how to refresh just an div with id = id;