Advertisement
xapu

Untitled

Jul 11th, 2017
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. function attachEvents() {
  2. $('#btnDelete').on('click', deletetor)
  3. $('#btnAdd').on('click', creator)
  4.  
  5. function deletetor() {
  6. $('#towns').find(':selected').remove()
  7. }
  8.  
  9. function creator() {
  10. let newItem = $('#newItem').val()
  11. if (newItem == '') return
  12. $('#newItem').val('')
  13. //$('#towns').append(new Option(`${newItem}`)) <====== this line dosent work
  14. $('#towns').append($('<option>').text(newItem))
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement