Is there a way to use the code in HTML Component?

Hey
You can set the src parameter in the HTML Component but I want to update the code parameter. Is there anyway to accomplish this?

I am trying to insert the gist of my code samples in a Dynamic Page.

Gist link:

If I set that as the src it won’t load the page in the iframe at all. But if I set the code as

<script 
src="https://gist.github.com/andreaskviby/62e54d51612c3a46d02aa666d148b4c1.js">
</script>

It will work but I can’t use that because there is only src exposed in the HTML Component.

1 Like

Hi Andreas,

The thing is that you’re not really loading a site, but loading a JS file.
The only way I can think of achieving that id using the HTML component post message to deliver data (such as the JS file URL), and set the HTML component code to load it.

See here about how to send data to HTML component.
See here about how to create a dynamic script tag in javascript - this should be done in the HTML component code.

Let me know how it goes :slight_smile:
Liran.