Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

jquery get selected option value

$("select.your-select").change(function(){ 
	$(this).children("option:selected").val();
});
Comment

jquery selected option

$( "#myselect option:selected" ).val();
Comment

jquery get selected option value

var selectedOptionText = $('#mySelectID').find(":selected").text();//selected option text
var selectedOptionVal = $('#mySelectID').find(":selected").val();//selected option value
Comment

select option value jquery

$("select.country").change(function(){
  var selectedCountry = $(this).children("option:selected").val();
  alert("You have selected the country - " + selectedCountry);
});
Comment

get selected option value jquery

$("#vacc_wellness_agegroups option:selected").val();
Comment

option selected jquery

$('select option[value=8272]').attr('selected', '');
Comment

jquery selected option value

$(document).ready(function(){
    $("select.country").change(function(){
        var selectedCountry = $(this).children("option:selected").val();
        alert("You have selected the country - " + selectedCountry);
    });
Comment

jquery selected option value

 let payment_type = $("#olca_form_submit select[name='payment_type']")
      .find(":selected")
      .val();
Comment

jquery option selected

$('.selDiv option:eq(1)').prop('selected', true)
Comment

get option value jquery

<select id="state">
    <option value="state1" data-id="1">state1</option>
    <option value="state2" data-id="2">state2</option>
    <option value="state3" data-id="3">state3</option>
</select>

$('#state option[data-id="2"]').val();

//output state2
Comment

jquery select option by value

$('.selDiv option[value="SEL1"]')
Comment

select selected option value jquery

var conceptName = $('#aioConceptName').find(":selected").text();
Comment

selected value jquery

$(this).val(); //in jquery it returns the selected value
Comment

jquery select option value selected

$("div.id_100 select").val("val2").change();
Comment

select selected value jquery

If you want to get the selected option text, you can use $(select element). text() . var text = $('#aioConceptName option:selected'). text();
If you want to get selected option value, you can use $(select element). val() . var val = $('#aioConceptName option:selected').val();
Comment

PREVIOUS NEXT
Code Example
Javascript :: how to make fake binary 
Javascript :: Material-ui add comment icon 
Javascript :: how to export a constant in javascript 
Javascript :: jquery option not disabled 
Javascript :: assign array to another array javascript 
Javascript :: print element by xpath javascript 
Javascript :: encrypt decrypt in vanilla javascript 
Javascript :: use setstate in function component 
Javascript :: how to check password and confirm passwor in joi 
Javascript :: moment timezone set clock in another timezone 
Javascript :: is jwt token expired 
Javascript :: storing an image file into buffer field with mongoose 
Javascript :: regex in mongo query 
Javascript :: modulo operator in javascript 
Javascript :: hello world in html using javascript 
Javascript :: mongo mongoose join aggregation lookup 
Javascript :: delete message discord.js 
Javascript :: filter duplicates javascript 
Javascript :: html escape function javascript 
Javascript :: add array to array js 
Javascript :: match the pattern in the input with javascript 
Javascript :: create directory when writing to file in nodejs 
Javascript :: frequency of characters in a string in javascript 
Javascript :: antd react native 
Javascript :: getting empty req.body 
Javascript :: javascript split string by multiple characters 
Javascript :: call json api javascript 
Javascript :: ReactDOMServer import 
Javascript :: reverse method 
Javascript :: sentry ignore errors 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =