JSFiddle - React, Tailwind, and code Playground

HTML

<select id="test">
    <option>hello</option>
    <option>other</option>
</select>

CSS

body { margin: 2em; }

JavaScript

document.getElementById('test').addEventListener('change', function() {
    alert('Natively bound handler invoked!');
});

$('#test').trigger('change');