Answers for "javascript trigger select change event"

2

select option trigger in js

/*html*/
<select id="sel" onchange='alert("changed")'>
  <option value='1'>One</option>
  <option value='2'>Two</option>
  <option value='3' selected>Three</option>
</select>

/*Function js*/
var select = document.querySelector('#sel'),
    input = document.querySelector('input[type="button"]');
select.addEventListener('change',function(){
    alert('Yare yare daze');
});

/*RESULT*/
/*When change value trigger alert('Yare yare daze') */
Posted by: Guest on October-21-2020
0

javascript trigger change event

There's a couple of ways you can do this. If the onchange listener is a function set via the element.onchange property and you're not bothered about the event object or bubbling/propagation, the easiest method is to just call that function:

element.onchange();
If you need it to simulate the real event in full, or if you set the event via the html attribute or addEventListener/attachEvent, you need to do a bit of feature detection to correctly fire the event:

if ("createEvent" in document) {
    var evt = document.createEvent("HTMLEvents");
    evt.initEvent("change", false, true);
    element.dispatchEvent(evt);
}
else
    element.fireEvent("onchange");
Posted by: Guest on March-11-2021

Code answers related to "javascript trigger select change event"

Code answers related to "Javascript"

Browse Popular Code Answers by Language