Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Loading JS flot external resources using JSFiddle

I'm trying to create a JSFiddle loading external resources (Flot). However, when I add my external resource:

http://www.flotcharts.org/flot/jquery.flot.js

I get this alert error in JSFiddle

You're loading resources over HTTP not HTTPS, your fiddle will not work. Do you wish to continue?

However, the https version of flot,

https://www.flotcharts.org/flot/jquery.flot.js

has security warnings associated with it (in Chrome, the error is listed as "Your connection is not private"). What is the proper way to extenrally load flot into a JSFiddle?

like image 247
Dave Avatar asked Aug 13 '16 15:08

Dave


1 Answers

When you're creating a fiddle, JSFiddle requests HTTPS content but it does not need it.

Create your fiddle using https://jsfiddle.net (Click ok on the warnings when adding your http:// external resources) and click save.

Once you click save, you'll be redirected to your JSFiddle saved URL. On this URL, just change https:// to http:// and it will work.

Example here http://jsfiddle.net/kL1wuh66/1/

like image 50
JayIsTooCommon Avatar answered Oct 22 '22 08:10

JayIsTooCommon