Skip to content

Instantly share code, notes, and snippets.

@lgg
Created January 30, 2018 00:30
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 lgg/575bfca97915eb9d7724e8397eef0089 to your computer and use it in GitHub Desktop.
Save lgg/575bfca97915eb9d7724e8397eef0089 to your computer and use it in GitHub Desktop.
create links list for opening
var links = [
];
var html ="";
for(var i =0; i< links.length; i++){
html += "<a href='" +links[i] + "'>" + links[i]+ "</a><br><br>";
}
div.innerHTML = html;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment