You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! Good job!
But jquery events on select not working!
html: <select class="form-control" id="tid" name='tid' is="ms-dropdown" data-visible-rows='10' > <option value='...' data-image='...'>...</option> </select>
and js: $('body').on('change', '#tid', function(){ alert('changed!'); });
When option is changed there is no alert!
The text was updated successfully, but these errors were encountered:
Versus creating new issue, this may be related.
Javascript onchange event constantly fires: <select name="tech" is="ms-dropdown" onchange="alert(this.value)">..
remove is="ms-dropdown" onchange fires once on change as expected
Hello! Good job!
But jquery events on select not working!
html:
<select class="form-control" id="tid" name='tid' is="ms-dropdown" data-visible-rows='10' > <option value='...' data-image='...'>...</option> </select>
and js:
$('body').on('change', '#tid', function(){ alert('changed!'); });
When option is changed there is no alert!
The text was updated successfully, but these errors were encountered: