Is there anyway to unload a page that has been loaded inside an iframe? I do not want to change the iframe src to a blank page if possible. I am basically looking for something that will do something like this $('#frameID').attr("src",""); except that code does not seem to clear the previously loaded page.
Is there a "unload" function that I can call which will reset the iframe so that it does not have any content loaded inside?
$("#frameID").attr("src", "")works just fine for me on Firefox 11. If you really want a blank iframe, you might also want to try setting thesrctoabout:blankinstead of an empty string. – Ilmari Karonen Mar 25 '12 at 17:12about:blankworks wonders!!! – TheVillageIdiot Apr 8 '12 at 8:10