SSL issue with Jquery

Soldato
Joined
18 Oct 2002
Posts
15,399
Location
The land of milk & beans
You've not given much to go on, but the first thing you should do when you have an issue with JavaScript is to check the console. In your case you have several errors, the most pressing of which is this:

Code:
Uncaught ReferenceError: jQuery is not defined

This is because you are including bootstrap.js before jquery.js. Switch them around.
 
Back
Top Bottom