April 5th 2010

Get the text of a Dropdown's Selected Item Using jQuery

I always have to look this one up for some reason, so I thought I would put it here to make that easier:

$(“#Dropdown option:selected”).text();

I initially found the answer on this Stackoverflow post.