Hide option in materialize select box
问题 Materialize docs - http://materializecss.com/forms.html I want to hide Materialize select option by jquery. I added a class to an option and by using this code $('.break_5').hide(); option is hidden successfully. But it is displayed in Materialize select box. 回答1: According to the docs, in order to update the items inside the select, you must destroy the material and rerun initialization. $('#mySelectID').material_select('destroy'); Then recreate your select with or without certain options