After the latest Chrome Update 73, the date pickers, time pickers and dropdowns for Materialize CSS 0.100.2 isn\'t working anymore, it flickers when you click on it and then dis
Based on Armando answer(the only one that worked for me) I made a javascript function using JQuery for non angular projects:
function refreshSelects(){
$('select').material_select('destroy');
$('select').each(function(){
$(this).parent().attr("onclick","event.stopPropagation();");
});
$('select').material_select();
}
Then, when I must initialize or refresh selectors content I just have to call the function
refreshSelects();