skip to Main Content

Javascript – Identify iframe with specific string in src

Page sometime contain single embedded iframe video. I wish top open those specific videos in the current tab. <iframe allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" marginheight="0" marginwidth="0" scrolling="no" frameborder="0" width="100%" src="https://streamview.com/v/wkx5ntgwdv5b"></iframe> My code: (function() { 'use strict'; var openontaB = document.querySelector('iframe').src; window.location.href =…

VIEW QUESTION
Back To Top
Search