JSfiddle does not help me

3

It seems strange to me that when I go into the examples of other users and overwrite with my html code, I alter the external sources. My jsFidle example works. On the contrary, if I am in my account starting a jsfidle from scratch it does not work even if I check the JAVASCRIPT (gear) config.

Example of any Jsfidle in which I wrote about with my code and external material:

This is my jsfidle from scratch, they are the same external resources and settings in javascript:

Maybe someone helps me see what my ignorance is in this.

Here is my jsfiddle.

    
asked by N'oel C'alero 03.10.2016 в 19:30
source

1 answer

2

The problem is that you are calling your libraries without the https protocol, browsers do not allow cross-resources, that is, if the page is being called through https as jsfiddle: link

You can not call your bookstores through http:

link

To solve the problem change the urls of your libraries to urls that are through https.

Here I leave you a functional jsfiddle based on yours: link

For more information check:

link

    
answered by 03.10.2016 / 19:35
source