This gets the value of whatever is selected in my dropdown menu.
document.getElementById(\'newSkill\').value
I cannot however find out what
function getValue(obj) { // it will return the selected text // obj variable will contain the object of check box var text = obj.options[obj.selectedIndex].innerHTML ; }
HTML Snippet