SSL issue with Jquery

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