Skip to content

Instantly share code, notes, and snippets.

@arturparkhisenko
Forked from cramforce/prefetch.js
Created November 3, 2015 19:26
Show Gist options
  • Save arturparkhisenko/95eac6f3c3d579df2a20 to your computer and use it in GitHub Desktop.
Save arturparkhisenko/95eac6f3c3d579df2a20 to your computer and use it in GitHub Desktop.
const prefetch = document.createElement('link');
prefetch.setAttribute('rel', 'prefetch');
prefetch.setAttribute('href', url);
document.head.appendChild(prefetch);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment