Try:
jQuery("#availability option:selected").val();
Or to get the text of the option, use text():
jQuery("#availability option:selected").text();
More Info:
- http://api.jquery.com/val/
- http://api.jquery.com/text/
Try:
jQuery("#availability option:selected").val();
Or to get the text of the option, use text():
jQuery("#availability option:selected").text();
More Info: