how to get a value from an option select?
get value of an option select from my website here:
website
When selecting a town from the top left drop down. nothing is being alerted?!
- $('.townslist select').change(function() {
- alert("Selected");
- var town = $(this).val();
- alert( "Selected " + town );
- });