Imagine having your browser load an iframe with <iframe src="test.html">
Is it possible to use ajax to load the content of test.html into a div on the main HTML page?
This idea serves as my solution to the limitation of making ajax submits to remote hosts. The concept involves generating a dynamic page with a 0-sized iframe that sends a report request to the remote host. Once the page (and iframe content) loads, I plan to copy the iframe content into a div using JavaScript.
Any tips would be greatly appreciated!
Thank you, Maxim.