I have an external URL, basically a vendor URL. Dummy URL : https://vendorurl.com/something
This URL returning content like this
<html>
<head></head>
<body>document.write('few tables'); </body>
</html>
When i use iframe, I am getting entire content including document.write(' displayed on screen.
My objective is to get the body of the entire content and display only 'few tables' on the screen. Certainly there must be a way to do so since this is vendor URL and its used by several companies.
Please help me out in resolving this issue.
FOUND SOLUTION: i figured out by doing giving < script src ='https://vendorurl.com/something'> did the magic.