Materialize CSS to work as shown on the documentation page, such as: modals popping up, tabs with indicators, hover-able items to appear on hover, etc...
Most of the component's functionality are severely lacking or not working all together.
Not sure why the downloadable version doesn't work, no JS or CSS errors in console. Can't really suggest more than to just fix it.
example code pen with tabs and modal: https://codepen.io/CoderLee/pen/xxbvNWQ
This is stopping my use of Materialize CSS on all application development.
Please read this page.
Yeah it always helps to read the instructions first 馃槀
Alternatively, you can initialize components on a per component basis, as per the docs. Check the page for the component you're using to see if you need to initialize.
https://materializecss.com/modals.html
$(document).ready(function(){
$('.modal').modal();
});
https://materializecss.com/tabs.html
$(document).ready(function(){
$('.tabs').tabs();
});
The Doc's _Getting Started_ should probably have a "page setup" explanation too, but I digress. Thanks for pointing out what I missed!
@JordanPritt the docs could sure use a bit of work
Most helpful comment
Please read this page.