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
Post a Comment