html - how to play youtube video at last when all element is load -


i load youtube video in page , buy play before other element load. page loading speed make slow...

<div class="wel_come_msg">     <div class="video_box">         <iframe width="100%" height="315" src="//www.youtube.com/embed/rdm7wstkg8s?autoplay=1" frameborder="0" allowfullscreen></iframe>     </div> </div> 

change iframe to

<iframe id="video" width="100%" height="315" frameborder="0" allowfullscreen></iframe> 

jquery

$(document).load(function(){   $("#video").attr("src","http://www.youtube.com/embed/rdm7wstkg8s?autoplay=1") });  

Comments

Popular posts from this blog

C# random value from dictionary and tuple -

cgi - How do I interpret URLs without extension as files rather than missing directories in nginx? -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -