Skip to content

Instantly share code, notes, and snippets.

@vioKamran
Forked from kpuputti/gist:1040118
Created April 22, 2023 14:08
Show Gist options
  • Save vioKamran/f3b05e1dd789f72f6df30746f06761bf to your computer and use it in GitHub Desktop.
Save vioKamran/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);
});
}
};
@vioKamran
Copy link
Author

This best

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