jquery code works on codepen/jsfiddle but not html page

后端 未结 1 1865
粉色の甜心
粉色の甜心 2021-01-28 15:51

My code for collapsible jquery div works on codepen and JSFiddle, but when I copy everything to my page (content adapted), the div does not expand. What am I missing, or where d

相关标签:
1条回答
  • 2021-01-28 16:34

    You need to wrap your code inside ready handler:

    $(document).ready(function(){
         //your code here
    });
    

    Or,

    $(function(){
       //your code here
    });
    
    0 讨论(0)
提交回复
热议问题