Is it possible to get an element inside #document?
Also, I can't find the way to use Jquery on chrome console.
Is it possible to get an element inside #document?
Also, I can't find the way to use Jquery on chrome console.
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