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

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

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