Skip to content Skip to sidebar Skip to footer

Not Interpret Html In Iframe But Get The Information From The Html

In order to reduce the time of executing, we decide not to show the table in the iframe as the client cant see it. But we have to copy the contents of the table so as to update the

Solution 1:

Is the document you're requesting on the same domain as the "main page"? If so, you can request the second document via AJAX and use a regular expression to extract the element from it. This is all done without rendering any additional content to the DOM.

Once you have the table element extracted from the AJAX response, you can add it to the main page DOM.

Post a Comment for "Not Interpret Html In Iframe But Get The Information From The Html"