- iframe load the content from src
- How to send a xhr request for & from this iframe, loaded content?
Something like this
<iframe src="remote_server.com/upload.php"> xhr = new XMLHttpRequest(); xhr.open("POST, "remote_server.com/upload.php"); xhr.send("data"); </iframe>