Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

In Inspect Element, how can I copy text in dropdown list under icon with following tooltip text: "Select an iframe as the currently targeted document"?

  • 2 Antworten
  • 1 hat dieses Problem
  • 42 Aufrufe
  • Letzte Antwort von Jack2035

more options

Hi there,

As per my screenshot, I'd like to see the full text in the iframe (cirled red icon) dropdown list and also be able to copy it.

Cheers, Jack

Hi there, As per my screenshot, I'd like to see the full text in the iframe (cirled red icon) dropdown list and also be able to copy it. Cheers, Jack
Angefügte Screenshots

Ausgewählte Lösung

Hi Jack, try this code in the web console:

var ifs=document.getElementsByTagName('iframe'); for(var i=0; i<ifs.length; i++) console.log(ifs[i].src);

That would list the iframes in the main document, but not within other iframes. Close?

Diese Antwort im Kontext lesen 👍 1

Alle Antworten (2)

more options

Ausgewählte Lösung

Hi Jack, try this code in the web console:

var ifs=document.getElementsByTagName('iframe'); for(var i=0; i<ifs.length; i++) console.log(ifs[i].src);

That would list the iframes in the main document, but not within other iframes. Close?

more options

thanks mate!