On my https web site, how can I display images from a web site without a certificate?
I own the example domain of:
- http://www.example.com
- http://static.example.com (used for my CDN)
I own a certificate for WWW.example.com but not STATIC.example.com.
On my www.example.com domain, you can register for the service over SSL using http*s*://www.example.com
On the registration form (www.), I want to display images from my CDN which is on http://STATIC.example.com but don't own a certificate for that subdomain.
On the https://www.example.com registration form - I'm using AJAX to dynamically pull over the image from http://static.example.com. It seems that the web browser does not display non-SSL images at all when using AJAX. However, IF that image were located on the httpS://www.example.com domain (the same as the registration form), the image will display via AJAX.
For architecture & design reasons, I would like to keep those images on my CDN (static.example.com) without having to purchase a certificate.
Does anyone know how I can display these images via AJAX from my non-SSL submain on my http*s*://www.example domain?
Thanks in advance.