Skip to content

Instantly share code, notes, and snippets.

@hughfdjackson
Forked from anonymous/gist:5008495
Last active December 14, 2015 01:48
Show Gist options
  • Save hughfdjackson/5008536 to your computer and use it in GitHub Desktop.
Save hughfdjackson/5008536 to your computer and use it in GitHub Desktop.
$(function()
{
$.ajax({
url: 'check.php', //the script to call to get data
success: function(data) {
$('#count').html(data); //Set output element html
}
});
});
</script>
<div id="count"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment