Search code examples
htmlimgur

blockquote does not return anything


This sample works in codepen, but not work in my html file? why is this happening?

i already tried to add https:// to href, but still not working

<script async src="//s.imgur.com/min/embed.js" charset="utf-8"></script>
a
<blockquote class="imgur-embed-pub" lang="en" data-id="KUteCdn">
  <a href="//imgur.com/KUteCdn">View post on imgur.com</a>
</blockquote>


Solution

  • My guess is that this is a CORS related issue, verify this by checking your js console. To rectify this, you can run a simple HTTP server and serve the html file from there.

    on Mac OS you run the following in terminal from your working directory

    http-server -p 4090 .

    In your web browser, navigate to http://localhost:4090

    This will stop you from receiving such an erroe