Isotope folded (elements overlap)

后端 未结 3 2005
余生分开走
余生分开走 2021-01-31 23:26

I have been reading stack overflow for a solution but can\'t find it.

\"enter (full si

3条回答
  •  清酒与你
    2021-01-31 23:53

    While we use

    jQuery(window).load(function($){});
    

    function it's throwing an Uncaught TypeError: $ is not a function

    Instead of you can use:

    jQuery(document).ready(function ($) {
    setTimeout(function(){ 
            //Isotope Code place here 
         }, 3000);
    });
    

    It's working fine.

提交回复
热议问题