I have a simple dropdown and want to get the specific value of an option if the user changes the dropdown selection, but without having him to push a submit button. Is this poss
Use the change event, which fires when the value of the element changes, like so:
change
$('#BezirksAuswahl').change(function(e){ alert(this.value); });