2
<https://codepen.io/samyakjain20/pen/dyMmaYj>

This is what I tried!, tried to integrate two slider designs mentioned below. The gesture animation which is there in the 1st link is not working in my slider.

https://codepen.io/codewunder/pen/Bnspb/

https://codepen.io/maheshambure21/pen/qZZrxy

I think the error is in JavaScript but I don't know how to solve. If you have seen something similar to this then also please mention it.

Samyak Jain
  • 90
  • 12

1 Answers1

2

Just click in the cog icon on the JavaScript panel, and add the jQuery CDN link https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js

This error is because the jQuery library is not found in your code.

enter image description here

Pablo Darde
  • 5,844
  • 10
  • 37
  • 55
  • How can I use it on my local pc – Samyak Jain Sep 12 '20 at 20:20
  • To solve this just add the cdn link as shown in the picture above. In the JavaScript panel, click in the cog icon, then paste the link present in my answer. That's it! To run locally you need to import the jQuery cdn link in you html as well. – Pablo Darde Sep 12 '20 at 20:23