I have a JS variable that holds html code for embedding a YouTube video, which looks like:
<iframe width="560" height="315" src="https://www.youtube.com/embed/....."
frameborder="0" allowfullscreen></iframe>
Is there any way to simply read the html from the variable? Or must I extract the URL from the variable and surround it with the iframe tag framework?