Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <select id="sections">
  2. <option>Opinion</option>
  3. <option>News</option>
  4. <option>Section</option>
  5. <option>Blah</option>
  6. </select>
  7.  
  8. ---------------------------
  9.  
  10. var selectEl = document.getElementById('sections');
  11. selectEl.addEventListener('change', function (evt) {
  12. var section = selectEl.options[selectEl.selectedIndex].value;
  13.  
  14. .... do something
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement