-
How do you get the HTML of a frame. Example: I have a page called Frames.html which loads frame1.html and frame2.html. I want to get the innerhtml of frame2.html how do I do it without going to the frame itself ( I mean that I don't want to load frame2.html all by itself into my browser! I want to keep the frames.html page in my browser!)
-
Dim Doc As HTMLDocument
Set Doc = WebBrowser1.Document.frames.Item(0).document ' or (1) or (2) etc
Debug.Print Doc.documentElement.innerHTML
A little more helpfull than the other posts I hope.:D