YouTube iframe API - loading related videos on iframe instead of opening new tabHow do I get a YouTube video thumbnail from the YouTube API?Open a URL in a new tab (and not a new window) using JavaScriptForce HTML5 youtube videohow to repair: pop up under youtube video on iframe tabYoutube Player API hide controls, hide info, hide related videos?YouTube iFrame API: Performance Issuefancybox prevent iframe urls opening in new tabOpen iFrame links in a new tab?Youtube Iframe Api get video titleHow to remove related video from YouTube embedded Iframe code in html?

Can I appeal credit ding if ex-wife is responsible for paying mortgage?

What does the output current rating from an H-Bridge's datasheet really mean?

How can Caller ID be faked?

Idiom for 'person who gets violent when drunk"

The last tree in the Universe

Is there a risk to write an invitation letter for a stranger to obtain a Czech (Schengen) visa?

At zero velocity, is this object neither speeding up nor slowing down?

How can this shape perfectly cover a cube?

Someone who is granted access to information but not expected to read it

Must a CPU have a GPU if the motherboard provides a display port (when there isn't any separate video card)?

Why does MAGMA claim that the automorphism group of an elliptic curve is order 24 when it is order 12?

Why did the USA sell so many airplanes prior to WW2?

How to search for Android apps without ads?

New Site Design!

How to address players struggling with simple controls?

Is it possible for underground bunkers on different continents to be connected?

My parents claim they cannot pay for my college education; what are my options?

Basic power tool set for Home repair and simple projects

How do credit card companies know what type of business I'm paying for?

newcommand with parameter blank or zero

Leveling up and Getting Items!

SQL Server has encountered occurences of I/O requests taking longer than 15 seconds

Does WiFi affect the quality of images downloaded from the internet?

Does the use of English words weaken diceware passphrases



YouTube iframe API - loading related videos on iframe instead of opening new tab


How do I get a YouTube video thumbnail from the YouTube API?Open a URL in a new tab (and not a new window) using JavaScriptForce HTML5 youtube videohow to repair: pop up under youtube video on iframe tabYoutube Player API hide controls, hide info, hide related videos?YouTube iFrame API: Performance Issuefancybox prevent iframe urls opening in new tabOpen iFrame links in a new tab?Youtube Iframe Api get video titleHow to remove related video from YouTube embedded Iframe code in html?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















Since YouTube has recently disabled the ability to hide related videos using the rel parameter, I am trying to get the clicked on related video and display it on the iframe instead of it opening it on a new tab and going to the official YouTube page.
I've tried injecting html code into the iframe html document to disable the target=_blank feature on the links but recently found out about the CORS problem.
Is there any way to grab the clicked link and display it on the iframe and remove the target=_blank option on the embeded iframe?










share|improve this question






















  • or, you can loop the video by adding the loop=1 parameter in the iframe.

    – Mauricio Arias Olave
    Mar 25 at 19:17











  • Yeah doesn't really solve my problem, because if the user has paused the video it still shows related videos and if they decide to click on another video it would just open a new tab and go to the video but I want to display that clicked video on my site instead of it opening a completely new tab. Thanks for the help though

    – forgemaster
    Mar 26 at 6:44











  • forgemaster, or consider use a custom YouTube player.

    – Mauricio Arias Olave
    Mar 29 at 21:41

















0















Since YouTube has recently disabled the ability to hide related videos using the rel parameter, I am trying to get the clicked on related video and display it on the iframe instead of it opening it on a new tab and going to the official YouTube page.
I've tried injecting html code into the iframe html document to disable the target=_blank feature on the links but recently found out about the CORS problem.
Is there any way to grab the clicked link and display it on the iframe and remove the target=_blank option on the embeded iframe?










share|improve this question






















  • or, you can loop the video by adding the loop=1 parameter in the iframe.

    – Mauricio Arias Olave
    Mar 25 at 19:17











  • Yeah doesn't really solve my problem, because if the user has paused the video it still shows related videos and if they decide to click on another video it would just open a new tab and go to the video but I want to display that clicked video on my site instead of it opening a completely new tab. Thanks for the help though

    – forgemaster
    Mar 26 at 6:44











  • forgemaster, or consider use a custom YouTube player.

    – Mauricio Arias Olave
    Mar 29 at 21:41













0












0








0








Since YouTube has recently disabled the ability to hide related videos using the rel parameter, I am trying to get the clicked on related video and display it on the iframe instead of it opening it on a new tab and going to the official YouTube page.
I've tried injecting html code into the iframe html document to disable the target=_blank feature on the links but recently found out about the CORS problem.
Is there any way to grab the clicked link and display it on the iframe and remove the target=_blank option on the embeded iframe?










share|improve this question














Since YouTube has recently disabled the ability to hide related videos using the rel parameter, I am trying to get the clicked on related video and display it on the iframe instead of it opening it on a new tab and going to the official YouTube page.
I've tried injecting html code into the iframe html document to disable the target=_blank feature on the links but recently found out about the CORS problem.
Is there any way to grab the clicked link and display it on the iframe and remove the target=_blank option on the embeded iframe?







javascript jquery api iframe youtube






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 25 at 2:57









forgemasterforgemaster

11




11












  • or, you can loop the video by adding the loop=1 parameter in the iframe.

    – Mauricio Arias Olave
    Mar 25 at 19:17











  • Yeah doesn't really solve my problem, because if the user has paused the video it still shows related videos and if they decide to click on another video it would just open a new tab and go to the video but I want to display that clicked video on my site instead of it opening a completely new tab. Thanks for the help though

    – forgemaster
    Mar 26 at 6:44











  • forgemaster, or consider use a custom YouTube player.

    – Mauricio Arias Olave
    Mar 29 at 21:41

















  • or, you can loop the video by adding the loop=1 parameter in the iframe.

    – Mauricio Arias Olave
    Mar 25 at 19:17











  • Yeah doesn't really solve my problem, because if the user has paused the video it still shows related videos and if they decide to click on another video it would just open a new tab and go to the video but I want to display that clicked video on my site instead of it opening a completely new tab. Thanks for the help though

    – forgemaster
    Mar 26 at 6:44











  • forgemaster, or consider use a custom YouTube player.

    – Mauricio Arias Olave
    Mar 29 at 21:41
















or, you can loop the video by adding the loop=1 parameter in the iframe.

– Mauricio Arias Olave
Mar 25 at 19:17





or, you can loop the video by adding the loop=1 parameter in the iframe.

– Mauricio Arias Olave
Mar 25 at 19:17













Yeah doesn't really solve my problem, because if the user has paused the video it still shows related videos and if they decide to click on another video it would just open a new tab and go to the video but I want to display that clicked video on my site instead of it opening a completely new tab. Thanks for the help though

– forgemaster
Mar 26 at 6:44





Yeah doesn't really solve my problem, because if the user has paused the video it still shows related videos and if they decide to click on another video it would just open a new tab and go to the video but I want to display that clicked video on my site instead of it opening a completely new tab. Thanks for the help though

– forgemaster
Mar 26 at 6:44













forgemaster, or consider use a custom YouTube player.

– Mauricio Arias Olave
Mar 29 at 21:41





forgemaster, or consider use a custom YouTube player.

– Mauricio Arias Olave
Mar 29 at 21:41












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330708%2fyoutube-iframe-api-loading-related-videos-on-iframe-instead-of-opening-new-tab%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330708%2fyoutube-iframe-api-loading-related-videos-on-iframe-instead-of-opening-new-tab%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript