From JsFiddle website to own website or Playground | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

From JsFiddle website to own website or Playground

I found this gem of an example, and want to experiment with it. https://jsfiddle.net/SalixAlba/54Fb2/ I want to use components of it on a website, but I cant get it to work. I unsuccessfully took the following actions. 1. Included JQuery library in head of html. 2. Wrapped the entire js in a JQuery equivalent of onload Please help. https://code.sololearn.com/WctOG0nZo5zE/?ref=app

12th Apr 2018, 3:58 PM
Louis
Louis - avatar
4 Answers
+ 8
Include this CDN in your code instead of default one. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> $(..).slider is a part of jQuery UI. For accessing that you have to include the another CDN, which is this one. <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.9.2/themes/base/jquery-ui.css" />
12th Apr 2018, 4:43 PM
Ranjan Bagri
Ranjan Bagri - avatar
+ 7
Hi Louis I have updated my previous answer with a jQuery UI CSS CDN link. Can you please add that in your code and check if it's working?
12th Apr 2018, 5:36 PM
Ranjan Bagri
Ranjan Bagri - avatar
+ 3
Thanks Ranjan I updated the code as you suggested It works much better, but something is still missing with the slider. Thanks
12th Apr 2018, 4:57 PM
Louis
Louis - avatar
+ 3
Thanks Ranjan you're a genius. Thanks for the assistance.
12th Apr 2018, 5:43 PM
Louis
Louis - avatar