Comment on Google bot delays executing JavaScript for daysparentComments−moreati13yPlease don't do that. I left that tab open on purpose, I'm half way through reading the page - if the page refreshes I likely lose my position−iamjustlooking13yYou don't have to refresh the page, you could make it so that your next page click loads the full page instead of using ajax/pjax.quick pjax e.g.: <html data-lastupdated="1234567890"... $.getJSON('/lastupdated.json', function(lastupdated) { if(lastupdated > $('html').data('lastupdated')) { $('a[data-pjax]').removeAttr('data-pjax'); } });−oakwhiz13yThis is exactly what I meant by my initial comment - I should have been more clear.−______13yYou don't have to force a reload, you can just suggest that the user reloads. Eg: "Please reload the page to get the latest version"
Comments
Please don't do that. I left that tab open on purpose, I'm half way through reading the page - if the page refreshes I likely lose my position
You don't have to refresh the page, you could make it so that your next page click loads the full page instead of using ajax/pjax.
quick pjax e.g.:
This is exactly what I meant by my initial comment - I should have been more clear.
You don't have to force a reload, you can just suggest that the user reloads. Eg: "Please reload the page to get the latest version"