Skip to content

Instantly share code, notes, and snippets.

@kg
Created March 23, 2018 11:58
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 kg/7f3250346c9b5023c27469ab03b72acb to your computer and use it in GitHub Desktop.
Save kg/7f3250346c9b5023c27469ab03b72acb to your computer and use it in GitHub Desktop.
var html = "";
for (var i = 0; i < urls.length; i++) {
html += "<link rel='preload' as='fetch' crossorigin='anonymous' href='" + urls[i] + "'>\n";
}
var e = context.document.createElement("div");
e.innerHTML = html;
e.id = "vm-preloads";
context.document.head.appendChild(e);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment