Skip to content

Instantly share code, notes, and snippets.

@kenseii
Created August 9, 2017 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenseii/62908949784f60c1c5affadd1390164f to your computer and use it in GitHub Desktop.
Save kenseii/62908949784f60c1c5affadd1390164f to your computer and use it in GitHub Desktop.
use a div and a .get with jquery to get your data from another page on your website.
$(function() {
startRefresh();
});
function startRefresh() {
setTimeout(startRefresh,1000);
$.get('pagelink.php', function(data) {
$('#content_div_id').html(data);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment