Javascript – See what content is not sent over HTTPS

htmlhttpsjavascript

I created a page that is HTTPS only.
On my browsers, I always get a warning that the page includes resources that are not secured. I just can't find out why!
Looking at the source code seems fine. All img src and javascript tags are using relative path (/images/…).
It does not consider href links as resources does it?

Is there a way to know what actually is the source of that problem?

Best Answer

I guess you could use the Net tab of Firebug to see that.

alt text
(source: ibm.com)

Related Topic