Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>i have changed for multiple urls, try this </p> <pre><code>&lt;/head&gt; &lt;body&gt; &lt;div class="condent"&gt;Lorem Ipsum is simply dummy text of the printing and http://www.youtube.com/watch?v=8YUmZNJUAHk No typesetting http://www.youtube.com/watch?v=8YUmZNJUAHk industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.&lt;/div&gt; &lt;script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ var textContent = $('.condent').text(); var str1 = textContent.split(' '); for (var i = 0, il = str1.length; i &lt; il; i++) { if (str1[i].indexOf("http://www.youtube.com/watch?v=") &gt;= 0){ var youtubeURL = str1[i]; var youtubeId = youtubeURL.replace('http://www.youtube.com/watch?v=',""); var embedCode = '&lt;iframe width="560" height="315" src="//www.youtube.com/embed/'+youtubeId+'" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;'; textContent = textContent.replace(youtubeURL,embedCode); } } $('.condent').html(textContent); }); &lt;/script&gt; &lt;/body&gt; </code></pre> <p></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload