Search code examples
javascriptjqueryhtmljsfiddlejsbin

Code only works on jsfiddle


In this question I asked, how I can generate shades of one color responsive to the number of div's. @DonJuwe came up with a perfectly working solution and demo: http://jsbin.com/xakifequ/1/edit Source code in JSBin

However when I'm trying to use the code from the jsfiddle or JSBin it just doesn't work. So I downloaded the source code from JSBin, opened the .html-file and what I got was this: What happens when downloading it

Can someone please explain me, why this happens?


Solution

  • you missed http: in the jQuery source link. if you using online resource you should follow the url's protocol. Other wise browser will search it from local. in this way you just confused your browser... So only it happens... :D

    you should use...

    <script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
    

    instead of

    <script type='text/javascript' src='//code.jquery.com/jquery-1.9.1.js'></script>