How can I get the selected text (not the selected value) from the dropdown list in my select box in JQuery.
I try this codes
var my_handlers = {
fill_provinces: function () {
var region = $("#province").children("option").filter(":selected").text()
},