1

Possible Duplicate:
use jquery to select a dropdown option

Helo,

I want to get selected text from dropdownlist using jquery..

Thank you

Community
  • 1
  • 1
Poorna
  • 323
  • 7
  • 20

2 Answers2

9

it would be something like that using just pure jquery

$("#idofyourdropdown option:selected").text();
COLD TOLD
  • 13,513
  • 3
  • 35
  • 52
6

try like this:

$("#yourdropdown option:selected").text();
stay_hungry
  • 1,448
  • 1
  • 14
  • 21