Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function attachEvents() {
- $('#btnDelete').on('click', deletetor)
- $('#btnAdd').on('click', creator)
- function deletetor() {
- $('#towns').find(':selected').remove()
- }
- function creator() {
- let newItem = $('#newItem').val()
- if (newItem == '') return
- $('#newItem').val('')
- //$('#towns').append(new Option(`${newItem}`)) <====== this line dosent work
- $('#towns').append($('<option>').text(newItem))
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement