how to get the html code from the iframe in client

  • Thread starter Thread starter chenhuawei
  • Start date Start date
C

chenhuawei

Hi everybody
I want to use iframe to include other website page and get a table (html
code) inside the include page code .I don't know how to do in the client
,thank you for any help.
 
Hi,
This example returns a reference to the all collection of the document
contained by the IFRAME.

var collAll = document.frames("IFrame1").document.all
 
Back
Top