I do not have a page to try this on myself, but presumably:
var reload = 60000; var currentpage = window.location; setInterval(function() { $('ul.ratings').each(function(i, el) { $(this).load(currentpage + " ul.ratings:eq(" + i + ") > li", function() {
I think your main problem does not account for the WHICH ul targeting of the content you are replacing.
This is probably a pretty complicated idea because you end up talking about it ten times and loading the page asynchronously 10 times.
I believe this always means:
$("body").load(currentpage + " body > *")
;)
lthibodeaux Feb 18 2018-11-28T00: 00Z
source share