IE 8 compatibility?
-
Hi all,
The same code that generates nice modals on Chrome, Safari, Firefox, IE 11, 10, 9 just generates a blank pop up on IE 8. I’ve tried dumping the cache in IE 8 with no luck. The code in the modal content is this:
`<link rel=”stylesheet” href=”(href here)”>
<img src=”(image here)” />
<div id=”modal_asset_download_text”>
<p>Please fill out the form to gain instant access to the requested download.</p>
<p>If you have any questions, please call us at (phone number) or email us at <a href=”mailto:(email here)”>(email here)</a></p>
<p>Thank you!</p>
</div><div id=”modal_asset_download_iframe”>
<iframe src=”(link to externally hosted form here)” frameborder=”0″></iframe>
</div>`The linked stylesheet is pretty simple, it just has this:
`#modal_asset_download_text{
width: 32%;
float: left;
padding-left: 10px;
}
#modal_asset_download_text a{
color: #0f75e8;
}
#modal_asset_download_text p:first-child{
margin-top: 14px;
}
#modal_asset_download_iframe{
float: right;
width: 66%;
}
#modal_asset_download_iframe iframe{
border: 0;
height: 500px;
width: 100%;
}`I’m going to dig into more of this now but if anybody sees anything wrong your help would be appreciated… I’m assuming easy modal works with IE 8 as I google search results that seem to indicate it’s at least partially working for others.
thanks
Bryan
- The topic ‘IE 8 compatibility?’ is closed to new replies.