Trouble with custom embed script

Hey,

I’m attempting to embed an iframe from an unique source but I can’t get the iframe to show when previewing the page.

Src link: Impel | 360° WalkArounds®

Example embed:

<script type='text/javascript' charset='utf-8'>    
   var iframe = document.createElement('iframe');      
   document.body.appendChild(iframe);

   iframe.src = 'http://spins.spincar.com/motorious/mcg-1991-ferrari-f40';      
   iframe.width = '600';
   iframe.height = '400';
</script>

Here’s a link to the post preview:
Preview Link

Here’s a screenshot of the editor:

Is there a limit to the src I can use in the ghost editor for an iframe?

@Eric_Morgan the browser will block the iframe request to http://spins.spincar.com because you’re loading it from a https site

1 Like

Thanks for the quick reply @Kevin. I’ve tried the https version of the link (which has a proper cert) for the src and I have the same result.

The preview link has the updated secure link now:
https://www.motorious.com/p/1b282837-adf4-4294-9537-5be8bc316ee5/

I have resolved this issue. It appears the specific source link was blocking the iframe from showing. I found an alternative link (from their cdn) that allowed me to get the embed working properly.