liamegan
8/17/2017 - 3:33 PM

Find all iframes and show their details. Intended for the console.

Find all iframes and show their details. Intended for the console.

document.querySelectorAll('iframe').forEach((iframe)=> {
  console.log(iframe.id, iframe.className, iframe.src)
});