Created
February 8, 2018 18:09
-
-
Save alvin-milton/48cee9c03a884d68ae0a0d24cc47d64b to your computer and use it in GitHub Desktop.
find iframes with matterport & wellcomemat videos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('iframe').each(function() | |
{ | |
if ($(this).attr('src').indexOf('matterport.com') > -1) | |
{ | |
console.log($(this).attr('src')) | |
} | |
if ($(this).attr('src').indexOf('wellcomemat.com') > -1) | |
{ | |
console.log($(this).attr('src')) | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment