Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Kamran-Karimi/f3b05e1dd789f72f6df30746f06761bf to your computer and use it in GitHub Desktop.

Select an option

Save Kamran-Karimi/f3b05e1dd789f72f6df30746f06761bf to your computer and use it in GitHub Desktop.
jQuery.getJSON abstraction to cache data to localStorage
var getCachedJSON = function (url, callback) {
var cachedData = window.localStorage[url];
if (cachedData) {
log('Data already cached, returning from cache:', url);
callback(JSON.parse(cachedData));
} else {
$.getJSON(url, function (data) {
log('Fetched data, saving to cache:', url);
window.localStorage[url] = JSON.stringify(data);
callback(data);
});
}
};
@Kamran-Karimi

Copy link
Copy Markdown
Author

This best

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment