Is there a way in javascript of stopping an iframe in the middle of loading a page? The reason I need to do this is I have a background iframe streaming data from a web server (via a Comet style mechanism) and I need to be able to sever the connection at will.
Any ideas welcome.
document.getElementById("myiframe").src = "http://www.example.com/not-long-polling.html";– Richard JP Le Guen Feb 5 '10 at 13:45