i have a dropdownlist in my web-page how i can get the value from the selected option of them
like
Check it Out-->
For getting text
$("#selme").change(function(){ $(this[this.selectedIndex]).text(); });
For getting value
$("#selme").change(function(){ $(this[this.selectedIndex]).val(); });