Answers for "get attribute from selected option"

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
0

selected option attribute jquery

$('#location').find('option:selected').attr('myTag');
Posted by: Guest on August-28-2020

Code answers related to "get attribute from selected option"

Browse Popular Code Answers by Language