i have a dropdownlist in my web-page how i can get the value from the selected option of them
like
Try
$("#selme").change(function(){ $(this).find("option:selected").text(); });
See a working demo