It seems that in IE8, if the page using https protocol needs to import a .js file, the .js file also needs to use the https protocol.
<script type="text/javscript" src="http://xxx/yourjs.js"></script>
works in all browsers except IE8
<script type="text/javscript" src="https://xxx/yourjs.js"></script>
works in all browsers
I am using a usercontrol which imports several .js files. This means that if one page uses https protocol, then I have to alter the usercontrol so that all imported .js files are using https protocol.
How do you resolve this issue?
How do you comment on this IE8 behavior?