Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Script to close other tabs or browser

Tags:

javascript

In my MVC application being developed for sales, I have a button which opens a web page which doesn't allow iframe to open in a new tab. So, when the sales agent use this button, they often don't close the tabs opened by the application and in the end of the day, there is 20-30 of open tabs. So, I was wondering if there is a script which I can add to a new button which could close:

  1. Either the complete browser with all tabs in it so they can start fresh or
  2. Close all other tabs without affecting the current tab.

In the view, I have

HTML

<input type="submit" onclick="return OpenInNewTab('http://test.com');" name="command" value="nonIframe" background-image:url(../images/URL/Test.png);" class="submit" />

Javascript

//Function OpenInNewTab
function OpenInNewTab(url) {
    var win = window.open(url, '_blank');
    win.focus();
    return false;
}

I was playing with this script, but it only closes the current tab. I want the current tab to be open and close all other tabs or close the entire browser itself.

Javascript

<script language="JavaScript">
    function closeIt() {
        close();
    }
</script>

HTML

<center>
    <form>
        <input type=button value="Close Window" onClick="closeIt()">
    </form>
</center>

Any suggestions would be really appreciated. Thank You

like image 232
user2908229 Avatar asked Mar 23 '15 21:03

user2908229


People also ask

Can you close another tab with JavaScript?

To close a window or tab that was opened using JavaScript, call window. close() . For example, the following will close the current window/tab.

Is there a way to close all Chrome tabs at once?

Android Chrome/Firefox: Select Tab > three dots > Close all tabs.

How do I close a window using JavaScript?

Simply call window. close() and it will close the current window.


2 Answers

HTML:

<a href="javascript: window.open('', '_self', '').close();">Close Tab</a>

javascript:

window.open('', '_self', '').close();

IT will close the current tab without prompting a permission.

like image 25
Mohamed Musthaque Avatar answered Oct 14 '22 11:10

Mohamed Musthaque


You can only close windows if you have their handle. That means your page needs to have been the one that opened them (or you somehow passed the handle around).

Example:

var winGoogle = window.open('http://google.com', '_blank');
var winBing = window.open('http://bing.com', '_blank');
var winYahoo = window.open('http://yahoo.com', '_blank');

//close the windows
winGoogle.close();
winBing.close();
winYahoo.close();

You could store these new windows in an array, and iterate over the handles when it is time to close them.

var windows = [];
//each time you open a new window, simply add it like this:
windows.push(window.open('http://google.com', '_blank'));

//then you can iterate over them and close them all like this:
for(var i = 0; i < windows.length; i++){
    windows[i].close()
}
like image 138
Gray Avatar answered Oct 14 '22 09:10

Gray