var ras_download = { download : function(url, msg) { $('body').append(''); document.getElementById('file_download_iframe').onreadystatechange = ras_download.uniframe; }, uniframe : function() { var status = (document.getElementById('file_download_iframe')).readyState; if (status == 'complete' || status == 'interactive') { $('#file_download_iframe').remove(); } } }