मैं एक छिपा div एक में एक यूट्यूब वीडियो से युक्त है <iframe>
। जब उपयोगकर्ता किसी लिंक पर क्लिक करता है, तो यह div दिखाई देता है, उपयोगकर्ता को तब वीडियो चलाने में सक्षम होना चाहिए।
जब उपयोगकर्ता पैनल को बंद कर देता है, तो वीडियो को प्लेबैक बंद कर देना चाहिए। इसे कैसे प्राप्त किया जा सकता है?
कोड:
<!-- link to open popupVid -->
<p><a href="javascript:;" onClick="document.getElementById('popupVid').style.display='';">Click here</a> to see my presenting showreel, to give you an idea of my style - usually described as authoritative, affable and and engaging.</p>
<!-- popup and contents -->
<div id="popupVid" style="position:absolute;left:0px;top:87px;width:500px;background-color:#D05F27;height:auto;display:none;z-index:200;">
<iframe width="500" height="315" src="http://www.youtube.com/embed/T39hYJAwR40" frameborder="0" allowfullscreen></iframe>
<br /><br />
<a href="javascript:;" onClick="document.getElementById('popupVid').style.display='none';">
close
</a>
</div><!--end of popupVid -->