Advertisement
Guest User

Attr selected

a guest
Feb 20th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const selectHTML = document.getElementById("cities");
  2. let prevValue = null;
  3.  
  4. selectHTML.addEventListener("change", () => {
  5.   if(prevValue !== null) {
  6.     console.log(selectHTML.children[prevValue]);
  7.     selectHTML.children[prevValue].removeAttribute("selected");
  8.   }
  9.   val = selectHTML.value - 1;
  10.   selectHTML.children[val].setAttribute("selected", "");
  11.   prevValue = val;
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement