<label for="AddList" class="locType">Select a location</label>
<select id="AddList">
<option value="New">New Address...</option>
</select>
The Js.
$(document).ready(function() {
//Location Code
$("#AddList").change(function() {
var str = "";
$("#AddList option:selected").each(function() {
str += $(this).text() + " ";
});
alert(str);
})
.change();
});
I'm trying to alert the contents whenever the user selects an option in the combobox. Also, could the code be provided to get the value of the selected option also.
Thank you