Reputation: 13
I have SSL enabled for my shopping cart, register, login and contact form. When SSL is enabled the jquery is disabled. I see google has jquery importing with https aswell.
Here is the page https://americanbookcompany.com/store/account/ when you click CREATE ONE NOW at the top, it does not execute the JQUERY to switch the form. Works perfect without SSL.
Any ideas?
Upvotes: 1
Views: 1574
Reputation: 4693
seems like you have a few .js
files called from non-secure urls
<script type="text/javascript" src="http://sdscdn.userreport.com/popup.min.js"></script>
<script src="http://tab-slide-out.googlecode.com/files/jquery.tabSlideOut.v1.3.js"></script>
<script src="http://twitter.com/statuses/user_timeline/americanbookco.json?callback=twitterCallback2&count=4" type="text/javascript"></script>
I can't be certain this is the only reason but my SSL
was very sensitive to things like this. Maybe storing these files locally and making sure all http
connections are secure might be the first step.
Upvotes: 3