I have a file, named download.php
, which contains a file to be downloaded, so it has the following headers (declared with PHP):
header(\"Content-Typ
I have used Onblure but it didn't help at all!
I used below code and it is working for me.
var popupWindow = window.open("endpoint","","setting");
var att = document.createAttribute("onblure"); // Create a "onblure" attribute
att.value = "window.close()"; // Set the value of the class attribute
popupWindow.setAttributeNode(att);
This will allow closing the window when download window appears
Note: endpoint: is your new window endpoint setting: is your window setting for example width, height,top, left .. etc
Can I ask what it says in the browser url bar in this opened window. It might be the case that the browser see's the headers letting the browser know it is to be treated as a download and doesn't run the window as a true page. and instead opens something like 'about:blank'. If that's the case the on the page javascript would never get run.
I can suggest the following however. I'm assuming this window is being opened by another page. In that case have the other page open the window programatically through javascript and control the close from there.
var popout = window.open("http://example.com/download.php");
window.setTimeout(function(){
popout.close();
}, 1000);
You may use the following snippet to close the current window (credits to this SO answer) :
window.open(window.location, '_self').close();
To run this after a given interval, simply use setTimeout
setTimeout(function() { window.open(window.location, '_self').close(); }, 3000);
I have a somewhat different proposal, which worked fine in my case and does not have an arbitrary timeout:
var newwindow = window.open("http://example.com/download.php");
newwindow.focus();
newwindow.onblur = function() {newwindow.close(); };
When finishing the download the new window will eventually unfocus and close.