Related questions
Getting the text from a drop-down box
This gets the value of whatever is selected in my dropdown menu.
document.getElementById('newSkill').value
I cannot however find out what property to go after for the text that's currently displayed by the drop down menu. I tried "text" …
Appending HTML string to the DOM
How to append this HTML string
var str = '<p>Just some <span>text</span> here</p>';
to the DIV with the ID 'test' which is in the DOM?
(Btw div.…