Workaround using jquery:
1) add this tag to the SP field
<div class="myCompany_iframe" style="visibility: hidden">width="560" height="315" src="//www.youtube.com/embed/Basc-0edkhw?list=sasd" frameborder="0" allowfullscreen</div>
2) Add this script to the page/master page
1) add this tag to the SP field
<div class="myCompany_iframe" style="visibility: hidden">width="560" height="315" src="//www.youtube.com/embed/Basc-0edkhw?list=sasd" frameborder="0" allowfullscreen</div>
2) Add this script to the page/master page
<script type="text/javascript">
$(document).ready(function() {
$( ".myCompany_iframe" ).each(function() {
$(this).html("<iframe " + $(this).html() + "></iframe>").css("visibility","visible");
});
});</script>
Reference URL:
No comments:
Post a Comment