materialize open modal on load

Solutions on MaxInterview for materialize open modal on load by the best coders in the world

showing results for - "materialize open modal on load"
Kailey
09 Jun 2019
1<script>
2 $(document).ready(function(){
3    $('#modal').modal();
4    $('#modal').modal('open'); 
5 });
6</script>
7
Sébastien
24 Sep 2019
1$(".MyModal").closeModal()