Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

set select option as selected jquery

$(document).ready(function() {
    $("#gate option[value='Gateway 2']").prop('selected', true);
    // you need to specify id of combo to set right combo, if more than one combo
});
Comment

jquery change selected option

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

click select option to update div jquery

    $('#choose').change(function(event) {
        $.post('info.php', { selected: $('#choose').val() },
            function(data) {
                $('#update').html(data);
            }
        );            
    });
Comment

set selected option jquery

$("#id_of_select_input").val('value of option to set as selected');
Comment

change value on selected jquery

<select onchange="getval(this);">
    <option value="1">One</option>
    <option value="2">Two</option>
</select>
 Run code snippet
Comment

change value on selected jquery

function getval(sel)
{
    alert(sel.value);
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript iterate object 
Javascript :: js redirect to url 
Javascript :: js redirect to another page 
Javascript :: javascript redirect to 
Javascript :: go to new page javascript 
Javascript :: function redirect javascript 
Javascript :: convert moment date to utc format moment 
Javascript :: react form on submit 
Javascript :: js replace all substrings 
Javascript :: display toastr warning 
Javascript :: react js router parameters 
Javascript :: mute video javascript 
Javascript :: react canvas clear 
Javascript :: datatable after loading function 
Javascript :: dummy json data 
Javascript :: js check which number is larger 
Javascript :: nodejs execute every minute 
Javascript :: javascript get first character of string 
Javascript :: How to iterate over the DOM 
Javascript :: push element to array to first place js 
Javascript :: how to take a input video 
Javascript :: javascript load multiple images 
Javascript :: how to code number must be smaller than in javascript 
Javascript :: Exceeded timeout of 5000 ms for a test. Use jest.setTimeout(newTimeout) to increase the timeout value, if this is a long-running test." 
Javascript :: js first letter capital 
Javascript :: how to swap two variables in js 
Javascript :: javascript get form data as json 
Javascript :: browser javascript update url without changing history 
Javascript :: web3.js get balance 
Javascript :: search content in js 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =