Posts

Showing posts with the label how can i remove iframe suggested video

How to remove Youtube suggested videos when you use iframe?

Image
How to remove Youtube suggested videos when you use iframe? When you are using youtube iframe videos on your website then youtube gives the youtube suggested video at the end of the video as it is not possible to do this but i had tried to provide the solutions by using a simple trick.  HTML  <div id="playerWrapOuter">  <div id="playerWrap">  <iframe width="640" height="360" src="https://www.youtube.com/embed/IlXjoPtTGT8?rel=0&enablejsapi=1" frameborder="0" ></iframe> </div> </div> More information please visit this url  https://www.papawebdesigner.com/  CSS  <style> #playerWrap { display: inline-block; position: relative; } #playerWrap.shown::after { content: ""; position: absolute; top: 0; left: 0; bottom: 0; right: 0; cursor: pointer; background-color: black; background-...