Skip to content

Instantly share code, notes, and snippets.

@alvin-milton
Created February 8, 2018 18:09
Show Gist options
  • Save alvin-milton/48cee9c03a884d68ae0a0d24cc47d64b to your computer and use it in GitHub Desktop.
Save alvin-milton/48cee9c03a884d68ae0a0d24cc47d64b to your computer and use it in GitHub Desktop.
find iframes with matterport & wellcomemat videos
$('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