Answers for "how to select text value in jquery"

7

jqury get selected option

<select id="myselect">
    <option value="1">Mr</option>
    <option value="2">Mrs</option>
    <option value="3">Ms</option>
    <option value="4">Dr</option>
    <option value="5">Prof</option>
</select>

<script>
$( "#myselect option:selected" ).val();
</script>
Posted by: Guest on August-18-2020
2

how to get the selected text of dropdown in jquery

BY LOVE
$("#Id option:selected").text()
Posted by: Guest on July-13-2020
1

jquery selected option text

$( "#myselect option:selected" ).text();
Posted by: Guest on October-06-2020
1

get selected option text jquery

$("#id option:selected").text();
Posted by: Guest on May-01-2020

Code answers related to "how to select text value in jquery"

Browse Popular Code Answers by Language