Hello,
I have added the iFrame HTML macro to my page. When I try to add a website it just shows a white box. I have tried adding:
But it always displays a white empty box (in preview and live on page). Any ideas?
I can add internal links just fine.
Hi Jeremiah,
Have you add the url to the whitelist?
https://confluence.atlassian.com/doc/configuring-the-whitelist-381255821.html
Regards
Nelson
Tags in this document are wrong.
I can't configure the whitelist in Confluence Cloud, there is no option.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you still want a solution I have one using a JS script I found on another article ;)
<script>
$(document).ready(function() {
$.ajax({
method: 'GET',
url: 'https://URL.com/roadmap.html',
dataType: 'text',
success: function(data) {
var iframe = document.getElementById('result');
iframe = iframe.contentWindow || ( iframe.contentDocument.document || iframe.contentDocument);
iframe.document.open();
iframe.document.write(data);
iframe.document.close();
}
});
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.