jsfiddle code not working in regular browser

前端 未结 4 360
轮回少年
轮回少年 2021-01-29 07:34

I am trying to create a simple slider for my website and found this example on jsfiddle: http://jsfiddle.net/AtFeF/79/

From that I created an html file containing all th

4条回答
  •  囚心锁ツ
    2021-01-29 08:06

    Add jQuery

    
    

    Enclose the script in onload, and add it after the jQuery script tag

    $(window).load(function(){
      // existing code
    });
    

    You can generally find what you need to add in left sidebar of jsFiddle

提交回复
热议问题