APEOL working

by giorgoskey

HTML

<select name="shirts" id="shirts" class="max-inputs">
    <option value="1">Home Adult Shirt</option>
    <option value="2">Away Adult Shirt</option>
    <option value="3">Home Kid Shirt</option>
    <option value="4">Away Kid Shirt</option>
</select>
<br>
<input type="submit" onclick="getval()" value="BUY THIS SHIRT" class="max-inputs">

JavaScript

function getval() {
  var sel = document.getElementById('shirts');

  if (sel.value == "1") {
    window.location.href = "https://26f4ae8690.nxcli.net/product/men-s-home-jersey-21-22/";
  } else if (sel.value == "2") {
    window.location.href = "https://26f4ae8690.nxcli.net/product/men-s-away-jersey-21-22/";
  } else if (sel.value == "3") {
    window.location.href = "https://26f4ae8690.nxcli.net/product/kid-s-home-jersey-21-22/";
  } else if (sel.value == "4") {
    window.location.href = "https://26f4ae8690.nxcli.net/product/kid-s-away-jersey-21-22/";
  }
}