I am having an issue where all my js files that are loaded on a ssl page break in IE 8.
Is there a technique to load them to work in all browsers and whether the page is secure or not?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re directly referencing scripts on third-party sites, create local copies of the scripts on your server instead. Then in your <script> tags, use relative URLs. For example:
That way the browser will load them over regular HTTP if the user browses to http://yourdomain.com/, or over HTTPS if the user browses to https://yourdomain.com/.