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
This is similar to what logikal answered but I think is cleaner:
$(".your-component-class").change(function(){ //your code.. //re-initialize component $(this).material_select(); });