I have a multiselect disabled <select multiple disabled>

i want to enable the select element (when the checkbox is checked) i try:
$("select").prop('disabled', false) but doesnt work.
thanks for your help.
I suppose that after .prop('disabled', false) you need to run $('select').material_select();
Generally, after any operation on materializedselect tag you need to call $('select').material_select(); to sync dropdown with underline hidden select.
@kmmbvnr Thanks You, its works, re-run $('select').material_select();
Most helpful comment
I suppose that after
.prop('disabled', false)you need to run$('select').material_select();Generally, after any operation on materialized
selecttag you need to call$('select').material_select();to sync dropdown with underline hidden select.