I want to record all links inputted by a user, then when they press a button, open each link in a separate tab. My current code is:
<html>
<head>
<script type='text/javascript'>
function clickyClick() {
url = document.getElementById("serieslink").value
window.open(url, '_blank');
}
</script>
</head>
<body>
<form>Series Name:
<input type="text" name="series1name" id="seriesname"><br>
Series Link:
<input type="text" name="series1link" id="serieslink">
</form>
<br>
<button onclick="AddSeries()">Add A New Series</button><br>
<button onclick="clickyClick()">Open Incomplete Series</button>
</body>
As it is, my code will take a user inputed link and a name and bring them to that single link. I would like for them to be able to enter multiple links, which are then saved, then click a button and be brought to all pages.