views:

75

answers:

3

Okay, so what are the ramifications of getting a JS file via an HTTPS call while on a HTTP page. I assume it would just be a little bit of extra overhead. Would there be any warnings about this call from any certain browser?

Don't ask why. It's just hypothetical.

+1  A: 

This will probably trigger the "Mix of secure and insecure" content alert in Internet Explorer.

David Dorward
+2  A: 

Sometimes IE (and maybe other browsers) get nervous and complain about pages having a mix of secure and insecure content. Whether what you're doing would cause that would require a simple test.

Pointy
+1  A: 

There shouldn't be any warnings in any browser. You can try it out this URL - http://www.530geeks.com/mixed-content.html. I tested with ie6 and firefox 3.5, they don't complain.

Its logical too - the host page is being served over http, there is no implied trust with the connection. So there is nothing to warn the user.

sri