0

Is it possible to get an element inside #document?

enter image description here

Also, I can't find the way to use Jquery on chrome console.

Dave
  • 5,108
  • 16
  • 30
  • 40
samkung
  • 21
  • 2

1 Answers1

0

Use iframe.contentDocument or iframe.contentWindow.document:

var iframe = document.getElementById("tidio-chat-iframe");
var iframeDocument = iframe.contentDocument || iframe.contentWindow.document;
var myDiv = iframeDocument.querySelector(".frame-content");
//Do something with myDiv
Jack Bashford
  • 43,180
  • 11
  • 50
  • 79