Drop downs don’t work in HTTPS but work fine in HTTP

On a clients website my dropdowns that I have set up for the 3 products are not working when I view the page via HTTPS.

Here it is working on HTTP: http://bit.ly/WeY3NP

Read More

Here it is not working on HTTPS: http://bit.ly/X0iHTo

Thanks a bunch!

Related posts

Leave a Reply

1 comment

  1. JQuery is not being included properly on https.

    You can see that $ is undefined in the chrome developers console when using https://. I can’t test right now but i suspect that if you include JQuery differently it will work.

    Change :

    <script src="http://code.jquery.com/jquery-latest.js"></script>
    

    To:

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>