Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a link on a webpage that would close current active tab in a browser without closing other tabs in the browser. When user clicks close link, an alert message should appear asking user to confirm with two buttons, "YES" and "NO". If user clicks "YES", close that page and If "NO", do nothing.

How can it be done? Any suggestions?

share|improve this question
It cannot be done with just HTML and PHP; you will have to use JavaScript in order to do this. – Ignacio Vazquez-Abrams Jan 16 '10 at 5:29
4  
Pleas be aware that the answer to this question doesn't work anymore. – houman001 Nov 29 '12 at 1:25

5 Answers

up vote 50 down vote accepted

You will need Javascript to do this. Use window.close():

close();

Note: the current window is implied. This is equivalent:

window.close();

or you can specify a different window.

So:

function close_window() {
  if (confirm("Close Window?")) {
    close();
  }
}

with HTML:

<a href="javascript:close_window();">close</a>

or:

<a href="#" onclick="close_window();return false;">close</a>

You return false here to prevent the default behavior for the event. Otherwise the browser will attempt to go to that URL (which it obviously isn't).

Now the options on the window.confirm() dialog box will be OK and Cancel (not Yes and No). If you really want Yes and No you'll need to create some kind of modal Javascript dialog box.

Note: there is browser-specific differences with the above. If you opened the window with Javascript (via window.open()) then you are allowed to close the window with javascript. Firefox disallows you from closing other windows. I believe IE will ask the user for confirmation. Other browsers may vary.

share|improve this answer
45  
You can't close any tab via JavaScript. "This method is only allowed to be called for windows that were opened by a script using the window.open method." In other words, you can only use JavaScript to close a window/tab that was spawned via JavaScript. – Ryan Joy Jan 16 '10 at 5:46
@atxryan And I believe the same domain/origin policy applies as well. – Justin Johnson Jan 16 '10 at 8:20
2  
Not working in FF & Chrome :) – enloz Sep 18 '11 at 2:41
Neither of the HTML samples work in Firefox 11 on a PC – H. Ferrence Apr 11 '12 at 11:08

This method works in Chrome and IE:

<a href="blablabla" onclick="setTimeout(function(){var ww = window.open(window.location, '_self'); ww.close(); }, 1000);">
    If you click on this the window will be closed after 1000ms
</a>
share|improve this answer
+1 this works for me – Kagawa Mar 14 at 8:43

Tested successfully in FF 18 and Chrome 24:

Insert in head:

<script>
    function closeWindow() {
        window.open('','_parent','');
        window.close();
    }
</script> 

HTML:

<a href="javascript:closeWindow();">Close Window</a>

Credits go to Marcos J. Drake.

share|improve this answer
it's not work in FF 19.0.2! – Jeson Park Mar 28 at 6:26

Here's how you would create such a link:

<a href="javascript:if(confirm('Close window?'))window.close()">close</a>

share|improve this answer

you helped me alot =) but I still have something that is not clear yet, I want to verify a password from a text box, if the password is correct I close the windows else alert not authorized

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.