Skip to content

Instantly share code, notes, and snippets.

@hellosmithy
Created July 1, 2014 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hellosmithy/b111a92a1c789511df4d to your computer and use it in GitHub Desktop.
Save hellosmithy/b111a92a1c789511df4d to your computer and use it in GitHub Desktop.
Mobile Safari image unload
// Credit to: http://www.fngtps.com/2010/mobile-safari-image-resource-limit-workaround/
var img = document.getElementById('previous');
img.parentNode.removeChild(img);
img.src = 'data:image/gif;base64,' +
'R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=';
window.timeout(function() {
img = null;
}, 60000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment