I want to change materialize select box value by jquery.
I am using $(\'#myselect\').val(\'1\'); on onchange event of other select box but
$(\'#myselect\').val(\'1\');
onchange
Using delegated event fixes the problem for me.
HTML
Choose your option
JS
$('#pickerContainer').on('change', 'select', function(){ console.log("got you"); });