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
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:
Can someone please explain me, why this happens?
As per snapshot, You are using
Replace it with
You are using protocol less Urls, i.e.
//code.jquery.com/jquery-1.9.1.js
, When you open a your html file likefile://
then jQuery is not loaded thus desired result is not achieved.However, if you test your html file like
http://localhost/yourfile.html
you will get the desired result.Note: Use
//
instead ofhttp://
when you want to inherit the protocol from the pageyou missed
http:
in the jQuery source link. if you usingonline resource
you should follow theurl's protocol
. Other wise browser will search it from local. in this way you just confused your browser... So only it happens... :Dyou should use...
instead of