Skip to content

Instantly share code, notes, and snippets.

@jp26jp
Created November 16, 2016 06:40
Show Gist options
  • Select an option

  • Save jp26jp/75571b47f671a41aeb9787d7f4eeeb99 to your computer and use it in GitHub Desktop.

Select an option

Save jp26jp/75571b47f671a41aeb9787d7f4eeeb99 to your computer and use it in GitHub Desktop.
Use getJSON with a preloader
$(".someSpinnerImage").show();
$.getJSON('file.php', function(json) {
$.each(json, function() {
// Retrieving data from json...
});
$(".someSpinnerImage").hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment