Skip to content

Instantly share code, notes, and snippets.

@Zylvian
Created November 3, 2018 16:29
Show Gist options
  • Save Zylvian/475a0d69675883ee34f97625e134fbd0 to your computer and use it in GitHub Desktop.
Save Zylvian/475a0d69675883ee34f97625e134fbd0 to your computer and use it in GitHub Desktop.
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$.ajaxSetup({ cache: false });
setInterval(async () => {
$.ajax({
url: 'callPy.php',
success: function () {
//alert("it played");
}
});
$.getJSON("ajaxJson.json", function(data) {
$.each(data, function(key, value){
$("#outDiv").text(value);
});
});
}, 4000);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment