Close window automatically after printing dialog closes

JavascriptPrinting

Javascript Problem Overview


I have a tab open when the user clicks a button. On the onload I have it bring up the print dialog, but the user asked me whether it was possible that after it sends to the printer to print, if the tab could close itself. I am not sure whether this can be done. I have tried using setTimeout();, but it's not a defined period of time since the user might get distracted and have to reopen the tab. Is there any way to accomplish this?

Javascript Solutions


Solution 1 - Javascript

if you try to close the window just after the print() call, it may close the window immediately and print() will don't work. This is what you should not do:

window.open();
...
window.print();
window.close();

This solution will work in Firefox, because on print() call, it waits until printing is done and then it continues processing javascript and close() the window. IE will fail with this because it calls the close() function without waiting for the print() call is done. The popup window will be closed before printing is done.

One way to solve it is by using the "onafterprint" event but I don' recommend it to you becasue these events only works in IE.

The best way is closing the popup window once the print dialog is closed (printing is done or cancelled). At this moment, the popup window will be focussed and you can use the "onfocus" event for closing the popup.

To do this, just insert this javascript embedded code in your popup window:

<script type="text/javascript">
window.print();
window.onfocus=function(){ window.close();}
</script>

Hope this hepls ;-)

Update:

For new chrome browsers it may still close too soon see here. I've implemented this change and it works for all current browsers: 2/29/16

        setTimeout(function () { window.print(); }, 500);
        window.onfocus = function () { setTimeout(function () { window.close(); }, 500); }

Solution 2 - Javascript

This is what I came up with, I don't know why there is a small delay before closing.

 window.print();
 setTimeout(window.close, 0);

Solution 3 - Javascript

Sure this is easily resolved by doing this:

      <script type="text/javascript">
         window.onafterprint = window.close;
         window.print();
      </script>

Or if you want to do something like for example go to the previous page.

    <script type="text/javascript">
        window.print();
        window.onafterprint = back;

        function back() {
            window.history.back();
        }
    </script>

Solution 4 - Javascript

Just:

window.print();
window.close();

It works.

Solution 5 - Javascript

I just want to write what I have done and what has worked for me (as nothing else I tried had worked).

I had the problem that IE would close the windows before the print dialog got up.

After a lot of trial and error og testing this is what I got to work:

var w = window.open();
w.document.write($('#data').html()); //only part of the page to print, using jquery
w.document.close(); //this seems to be the thing doing the trick
w.focus();
w.print();
w.close();

This seems to work in all browsers.

Solution 6 - Javascript

This code worked perfectly for me:

<body onload="window.print()" onfocus="window.close()">

When the page opens it opens the print dialog automatically and after print or cancel it closes the window.

Hope it helps,

Solution 7 - Javascript

Just wrap window.close by onafterprint event handler, it worked for me

printWindow.print();
printWindow.onafterprint = () => printWindow.close();

Solution 8 - Javascript

This is a cross-browser solution already tested on Chrome, Firefox, Opera by 2016/05.

Take in mind that Microsoft Edge has a bug that won't close the window if print was cancelled. Related Link

var url = 'http://...';
var printWindow = window.open(url, '_blank');
printWindow.onload = function() {
	var isIE = /(MSIE|Trident\/|Edge\/)/i.test(navigator.userAgent);
	if (isIE) {

		printWindow.print();
		setTimeout(function () { printWindow.close(); }, 100);

	} else {

		setTimeout(function () {
			printWindow.print();
			var ival = setInterval(function() {
				printWindow.close();
				clearInterval(ival);
			}, 200);
		}, 500);
	}
}

Solution 9 - Javascript

Using Chrome I tried for a while to get the window.onfocus=function() { window.close(); } and the <body ... onfocus="window.close()"> to work. My results:

  1. I had closed my print dialogue, nothing happened.
  2. I changed window/tabs in my browser, still nothing.
  3. changed back to my first window/tab and then the window.onfocus event fired closing the window.

I also tried <body onload="window.print(); window.close()" > which resulted in the window closing before I could even click anything in the print dialogue.

I couldn't use either of those. So I used a little Jquery to monitor the document status and this code works for me.

<script type="text/javascript">
	var document_focus = false; // var we use to monitor document focused status.
    // Now our event handlers.
	$(document).focus(function() { document_focus = true; });
	$(document).ready(function() { window.print(); });
	setInterval(function() { if (document_focus === true) { window.close(); }  }, 500);
</script>

Just make sure you have included jquery and then copy / paste this into the html you are printing. If the user has printed, saved as PDF or cancelled the print job the window/tab will auto self destruct. Note: I have only tested this in chrome.

Edit

As Jypsy pointed out in the comments, document focus status is not needed. You can simply use the answer from noamtcohen, I changed my code to that and it works.

Solution 10 - Javascript

This works well in Chrome 59:

window.print();
window.onmousemove = function() {
  window.close();
}

Solution 11 - Javascript

This worked for me 11/2020 <body onafterprint="window.close()"> ... simple.

Solution 12 - Javascript

this one works for me:

<script>window.onload= function () { window.print();window.close();   }  </script>

Solution 13 - Javascript

The following worked for me:

function print_link(link) {
    var mywindow = window.open(link, 'title', 'height=500,width=500');   
    mywindow.onload = function() { mywindow.print(); mywindow.close(); }
}

Solution 14 - Javascript

I tried many things that didn't work. The only thing that worked for me was:

window.print();
window.onafterprint = function () {
    window.close();
}

tested on chrome.

Solution 15 - Javascript

The following solution is working for IE9, IE8, Chrome, and FF newer versions as of 2014-03-10. The scenario is this: you are in a window (A), where you click a button/link to launch the printing process, then a new window (B) with the contents to be printed is opened, the printing dialog is shown immediately, and you can either cancel or print, and then the new window (B) closes automatically.

The following code allows this. This javascript code is to be placed in the html for window A (not for window B):

/**
 * Opens a new window for the given URL, to print its contents. Then closes the window.
 */
function openPrintWindow(url, name, specs) {
  var printWindow = window.open(url, name, specs);
	var printAndClose = function() {
		if (printWindow.document.readyState == 'complete') {
			clearInterval(sched);
			printWindow.print();
			printWindow.close();
		}
	}
	var sched = setInterval(printAndClose, 200);
};

The button/link to launch the process has simply to invoke this function, as in:

openPrintWindow('http://www.google.com', 'windowTitle', 'width=820,height=600');

Solution 16 - Javascript

<!doctype html>
<html>
<script>
 window.print();
 </script>
<?php   
date_default_timezone_set('Asia/Kolkata');
include 'db.php'; 
$tot=0; 
$id=$_GET['id'];
    $sqlinv="SELECT * FROM `sellform` WHERE `id`='$id' ";
    $resinv=mysqli_query($conn,$sqlinv);
    $rowinv=mysqli_fetch_array($resinv);
?>
        <table width="100%">
	       <tr>
                <td style='text-align:center;font-sie:1px'>Veg/NonVeg</td>  
	        </tr>
	        <tr>
                <th style='text-align:center;font-sie:4px'><b>HARYALI<b></th>  
	        </tr>	
	        <tr>
                <td style='text-align:center;font-sie:1px'>Ac/NonAC</td>  
	        </tr>
	        <tr>
                <td style='text-align:center;font-sie:1px'>B S Yedurappa Marg,Near Junne Belgaon Naka,P B Road,Belgaum - 590003</td>  
	        </tr>
        </table>
        <br>    
        <table width="100%">
	       <tr>
                <td style='text-align:center;font-sie:1'>-----------------------------------------------</td>  
	        </tr>
        </table>
        
        <table  width="100%" cellspacing='6' cellpadding='0'>
            
            <tr>
                <th style='text-align:center;font-sie:1px'>ITEM</th>
                <th style='text-align:center;font-sie:1px'>QTY</th>
                <th style='text-align:center;font-sie:1px'>RATE</th>
                <th style='text-align:center;font-sie:1px'>PRICE</th>
                <th style='text-align:center;font-sie:1px' >TOTAL</th>
            </tr>
            
            <?php
            $sqlitems="SELECT * FROM `sellitems` WHERE `invoice`='$rowinv[0]'";
            $resitems=mysqli_query($conn,$sqlitems);
            while($rowitems=mysqli_fetch_array($resitems)){
            $sqlitems1="SELECT iname FROM `itemmaster` where icode='$rowitems[2]'";
            $resitems1=mysqli_query($conn,$sqlitems1);
            $rowitems1=mysqli_fetch_array($resitems1);
            echo "<tr>
                <td style='text-align:center;font-sie:3px'  >$rowitems1[0]</td>
                <td style='text-align:center;font-sie:3px' >$rowitems[5]</td>
                <td style='text-align:center;font-sie:3px' >".number_format($rowitems[4],2)."</td>
                <td style='text-align:center;font-sie:3px' >".number_format($rowitems[6],2)."</td>
                <td style='text-align:center;font-sie:3px' >".number_format($rowitems[7],2)."</td>
              </tr>";
                $tot=$tot+$rowitems[7];
            }
            
            echo "<tr>
                <th style='text-align:right;font-sie:1px' colspan='4'>GRAND TOTAL</th>
                <th style='text-align:center;font-sie:1px' >".number_format($tot,2)."</th>
                </tr>";
            ?>
     	</table>
     <table width="100%">
	       <tr>
                <td style='text-align:center;font-sie:1px'>-----------------------------------------------</td>  
	        </tr>
        </table>
     	<br>
     	<table width="100%">
	        <tr>
                <th style='text-align:center;font-sie:1px'>Thank you Visit Again</th>  
	        </tr>
        </table>
<script>
window.close();
</script>
</html>

Print and close new tab window with php and javascript with single button click

Solution 17 - Javascript

This works for me perfectly @holger, however, i have modified it and suit me better, the window now pops up and close immediately you hit the print or cancel button.

function printcontent()
{ 
var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
disp_setting+="scrollbars=yes,width=300, height=350, left=50, top=25"; 
var content_vlue = document.getElementById("content").innerHTML; 
var w = window.open("","", disp_setting);
w.document.write(content_vlue); //only part of the page to print, using jquery
w.document.close(); //this seems to be the thing doing the trick
w.focus();
w.print();
w.close();
}"

Solution 18 - Javascript

jquery:

$(document).ready(function(){ 
  window.print();
  setTimeout(function(){ 
             window.close();
  }, 3000);
});

Solution 19 - Javascript

This worked best for me injecting the HTML into the popup such as <body onload="window.print()"... The above works for IE, Chrome, and FF (on Mac) but no FF on Windows.

https://stackoverflow.com/a/11782214/1322092

var html = '<html><head><title></title>'+
               '<link rel="stylesheet" href="css/mycss.css" type="text/css" />'+
               '</head><body onload="window.focus(); window.print(); window.close()">'+
               data+
               '</body></html>';

Solution 20 - Javascript

Here's what I do....

Enable window to print and close itself based on a query parameter.

Requires jQuery. Can be done in _Layout or master page to work with all pages.

The idea is to pass a param in the URL telling the page to print and close, if the param is set then the jQuery “ready” event prints the window, and then when the page is fully loaded (after printing) the “onload” is called which closes the window. All this seemingly extra steps are to wait for the window to print before closing itself.

In the html body add and onload event that calls printAndCloseOnLoad(). In this example we are using cshtm, you could also use javascript to get param.

<body onload="sccPrintAndCloseOnLoad('@Request.QueryString["PrintAndClose"]');">

In the javascript add the function.

function printAndCloseOnLoad(printAndClose) {
    if (printAndClose) {
   	    // close self without prompting
        window.open('', '_self', ''); window.close();
    }
}

And jQuery ready event.

$(document).ready(function () {
    if (window.location.search.indexOf("PrintAndClose=") > 0)
        print();
});

Now when opening any URL, simply append the query string param “PrintAndClose=true” and it will print and close.

Solution 21 - Javascript

To me, my final solution was a mix of several answers:

    var newWindow = window.open();
    newWindow.document.open();
    newWindow.document.write('<html><link rel="stylesheet" href="css/normalize-3.0.2.css" type="text/css" />'
            + '<link rel="stylesheet" href="css/default.css" type="text/css" />'
            + '<link rel="stylesheet" media="print" href="css/print.css" type="text/css" />');

    newWindow.document.write('<body onload="window.print();" onfocus="window.setTimeout(function() { window.close(); }, 100);">');
    newWindow.document.write(document.getElementById(<ID>).innerHTML);
    newWindow.document.write('</body></html>');
    newWindow.document.close();
    newWindow.focus();

Solution 22 - Javascript

This is what worked for me (2018/02). I needed a seperate request because my print wansn't yet on screen. Based on some of the excellent responses above, for which i thank you all, i noticed:

  • w.onload must not be set before w.document.write(data).
    It seems strange because you would want to set the hook beforehand. My guess: the hook is fired already when opening the window without content. Since it's fired, it won't fire again. But, when there is still processing going on with a new document.write() then the hook will be called when processing has finished.
  • w.document.close() still is required. Otherwise nothing happens.

I've tested this in Chrome 64.0, IE11 (11.248), Edge 41.16299 (edgeHTML 16.16299), FF 58.0.1 . They will complain about popups, but it prints.

function on_request_print() {
  $.get('/some/page.html')
    .done(function(data) {
      console.log('data ready ' + data.length);
      var w = window.open();
      w.document.write(data);
      w.onload = function() {
        console.log('on.load fired')
        w.focus();
        w.print();
        w.close();
      }
      console.log('written data')
      //this seems to be the thing doing the trick
      w.document.close();
      console.log('document closed')
    })
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
<a onclick="on_request_print();">Print rapportage</a>

Solution 23 - Javascript

const printHtml = async (html) => {
	const printable = window.open('', '_blank', 'fullscreen=no');
	printable.document.open();
	printable.document.write(`<html><body onload="window.print()">${html}</body></html>`);
	await printable.print();
	printable.close();
};

Here's my ES2016 solution.

Solution 24 - Javascript

IE had (has?) the onbeforeprint and onafterprint events: you could wait for that, but it would only work on IE (which may or may not be ok).

Alternatively, you could try and wait for the focus to return to the window from the print dialog and close it. Amazon Web Services does this in their invoice print dialogs: you hit the print button, it opens up the print-friendly view and immediately opens up the printer dialog. If you hit print or cancel the print dialog closes and then the print-friendly view immediately closes.

Solution 25 - Javascript

There's lots of pain getting stuff like this to work across browsers.

I was originally looking to do the same sort of thing - open a new page styled for print, print it using JS, then close it again. This was a nightmare.

In the end, I opted to simply click-through to the printable page and then use the below JS to initiate a print, then redirect myself to where I wanted to go when done (with a variable set in PHP in this instance).

I've tested this across Chrome and Firefox on OSX and Windows, and IE11-8, and it works on all (although IE8 will freeze for a bit if you don't actually have a printer installed).

Happy hunting (printing).

<script type="text/javascript">

   window.print(); //this triggers the print

   setTimeout("closePrintView()", 3000); //delay required for IE to realise what's going on

   window.onafterprint = closePrintView(); //this is the thing that makes it work i

   function closePrintView() { //this function simply runs something you want it to do

      document.location.href = "'.$referralurl.'"; //in this instance, I'm doing a re-direct

   }

</script>

Solution 26 - Javascript

just use this java script

 function PrintDiv() {
    var divContents = document.getElementById("ReportDiv").innerHTML;
    var printWindow = window.open('', '', 'height=200,width=400');
    printWindow.document.write('</head><body >');
    printWindow.document.write(divContents);
    printWindow.document.write('</body></html>');
    printWindow.document.close();
    printWindow.print();
    printWindow.close();
}

it will close window after submit or cancel button click

Solution 27 - Javascript

On IE11 the onfocus event is called twice, thus the user is prompted twice to close the window. This can be prevented by a slight change:

<script type="text/javascript">
  var isClosed = false;
  window.print();
  window.onfocus = function() {
    if(isClosed) { // Work around IE11 calling window.close twice
      return;
    }
    window.close();
    isClosed = true;
  }
</script>

Solution 28 - Javascript

This worked for me in FF 36, Chrome 41 and IE 11. Even if you cancel the print, and even if you closed the print dialog with the top-right "X".

var newWindow=window.open(); 
newWindow.document.open();
newWindow.document.write('<HTML><BODY>Hi!</BODY></HTML>'); //add your content
newWindow.document.close();
newWindow.print();  	

newWindow.onload = function(e){ newWindow.close(); }; //works in IE & FF but not chrome	

//adding script to new document below makes it work in chrome 
//but alone it sometimes failed in FF
//using both methods together works in all 3 browsers
var script   = newWindow.document.createElement("script");
script.type  = "text/javascript";
script.text  = "window.close();";
newWindow.document.body.appendChild(script);

Solution 29 - Javascript

setTimeout(function () { window.print(); }, 500);
        window.onfocus = function () { setTimeout(function () { window.close(); }, 500); }

It's work perfectly for me. Hope it helps

Solution 30 - Javascript

This works for me on Chrome (haven't tried on others)

$(function(){
    window.print();
    $("body").hover(function(){
        window.close();
    });
});

Solution 31 - Javascript

I tried this and it works

var popupWin = window.open('', 'PrintWindow', 
'width=650,height=650,location=no,left=200px');
popupWin.document.write(data[0].xmldata);
popupWin.print();
popupWin.close();

Solution 32 - Javascript

I guess the best way is to wait for the document (aka DOM) to load properly and then use the print and close functions. I'm wrapping it in the Document Ready function (jQuery):

<script>
$(document).ready(function () {
window.print();
window.close();
});
</script>

Worth to notice is that the above is put on my "printable page" (you can call it "printable.html" that I link to from another page (call it linkpage.html if you want):

<script>
function openNewPrintWindow(){
var newWindow=window.open('http://printable.html'); //replace with your url
newWindow.focus(); //Sets focus window
}
</script>

And for the copy-paste-developer who's just looking for a solution, here is the "trigger" to the function above (same page):

<button onclick="openNewPrintWindow()">Print</button>

So it will

  1. Open a new window when you click Print
  2. Trigger the (browser) print dialogue after page load
  3. Close window after printed (or cancelled).

Hope you are having fun!

Solution 33 - Javascript

simple add:

<html>
<body onload="print(); close();">
</body>
</html>

Solution 34 - Javascript

try this:

var xxx = window.open("","Printing...");
xxx.onload = function () {
     setTimeout(function(){xxx.print();}, 500);
     xxx.onfocus = function () {
        xxx.close();
     }	
}

Solution 35 - Javascript

An entirely different approach using native things only

First, add the following in the page that is to be printed

<head>
<title>printing please wait</title>
<META http-equiv=Refresh content=2;url="close.html">
</head>
<body onLoad="window.print()">

Then make close.html with following content

<body onLoad="window.close()"></body>

Now when the print dialogue is displayed, the page will remain open. As soon as the print or cancel task is done, the page will close like a breeze.

Solution 36 - Javascript

<!--- ON click print button, get print and on click close button of print window, get print window closed--->

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Print preview</title>

 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
    $(function () {
        $("#testid").click(function () {
            var sWinHTML = document.getElementById('content_print').innerHTML;
            var winprint = window.open("", "");
            winprint.document.open();
            winprint.document.write('<html><head>');
            winprint.document.write('<title>Print</title>');
            winprint.document.write('</head><body onload="window.focus(); window.print(); window.close()">');
            winprint.document.write(sWinHTML);
            winprint.document.write('</body></html>');
            winprint.document.close();
            winprint.focus();
        })
    })
</script>
</head>
 <body>
 
  <form id="form-print">
    <div id="content_print">
	<h3>Hello world</h3>
	<table cellpadding="0" cellspacing="0" width="100%">
	<thead>
	<tr>
	<th style="text-align:left">S.N</th>
	<th style="text-align:left">Name</th>
	</tr>
	</thead>
	<tbody>
	<tr>
	  <td>1</td>
	  <td>Bijen</td>
	</tr>
	<tr>
	  <td>2</td>
	  <td>BJ</td>
	</tr>
	</tbody>
	</table>
	</div>
    <button type="button" id="testid"/>Print</button>
</form>
</body>
</html>

Solution 37 - Javascript

document.addEventListener('DOMContentLoaded', (e)=>{
        print();
    if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {//expresion regular evalua navegador
        window.onfocus = function(){window.close();}
    } else {
        window.onafterprint = function(e){
        window.close();
        }
    }
});

onafterprint works good to me on desktop browser, no with smartphone, so y make something like this and work, there are many solutions, so try many anyway.

Solution 38 - Javascript

I came up with this simple script:

<script type="text/javascript">
setTimeout(function () { window.print(); }, 500);
setTimeout(function () { window.close(); }, 1000);
</script>

Solution 39 - Javascript

Close a popup after print.

In the parent windows

  let IframeLink = '../Sale/PriceKOT?SalesID=@(Model.SalesInfo.SalesID)&PrintTypeID=3';
     var newwindow = window.open(IframeLink, "KOT Print", 'width=560,height=550,toolbar=0,menubar=0,location=0');
    if (window.focus) { newwindow.focus() }

    function closeThisPopUp() {            
        newwindow.close();
        printf();
    } 



In the child or popup window

 window.onafterprint = function (event) {
    opener.closeThisPopUp();
    window.close;
};

Solution 40 - Javascript

REF source reference

<script type="text/javascript">
  window.print();
  window.onafterprint = window.close;	
</script>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTsundokuView Question on Stackoverflow
Solution 1 - Javascriptserfer2View Answer on Stackoverflow
Solution 2 - JavascriptnoamtcohenView Answer on Stackoverflow
Solution 3 - JavascriptSamuel BiéView Answer on Stackoverflow
Solution 4 - JavascriptYing StyleView Answer on Stackoverflow
Solution 5 - JavascriptHolgerView Answer on Stackoverflow
Solution 6 - JavascriptVictor OlaruView Answer on Stackoverflow
Solution 7 - Javascriptuser10145303View Answer on Stackoverflow
Solution 8 - JavascriptHeroselohimView Answer on Stackoverflow
Solution 9 - JavascriptNado11View Answer on Stackoverflow
Solution 10 - JavascriptMax HudsonView Answer on Stackoverflow
Solution 11 - JavascriptThor88View Answer on Stackoverflow
Solution 12 - Javascriptarun.mView Answer on Stackoverflow
Solution 13 - JavascriptMd Abu Sohib HossainView Answer on Stackoverflow
Solution 14 - JavascriptZeyadView Answer on Stackoverflow
Solution 15 - JavascriptJuan Manuel PerezView Answer on Stackoverflow
Solution 16 - JavascriptAbhinandan BudaviView Answer on Stackoverflow
Solution 17 - JavascriptAbubakar Ahmed RumaView Answer on Stackoverflow
Solution 18 - JavascriptArmandofView Answer on Stackoverflow
Solution 19 - Javascriptuser1322092View Answer on Stackoverflow
Solution 20 - JavascriptRitchieDView Answer on Stackoverflow
Solution 21 - JavascriptFelipeView Answer on Stackoverflow
Solution 22 - JavascriptRemcoView Answer on Stackoverflow
Solution 23 - JavascriptStuartView Answer on Stackoverflow
Solution 24 - JavascriptFemiView Answer on Stackoverflow
Solution 25 - JavascriptboboshadyView Answer on Stackoverflow
Solution 26 - Javascriptuser3373573View Answer on Stackoverflow
Solution 27 - JavascriptJakob Kofoed JanotView Answer on Stackoverflow
Solution 28 - JavascriptJames BellView Answer on Stackoverflow
Solution 29 - JavascriptKlajdi DostiView Answer on Stackoverflow
Solution 30 - JavascriptemmmmView Answer on Stackoverflow
Solution 31 - Javascriptuser13548View Answer on Stackoverflow
Solution 32 - JavascriptRbbnView Answer on Stackoverflow
Solution 33 - JavascriptSomwang SouksavatdView Answer on Stackoverflow
Solution 34 - JavascriptSugeng NoviantoView Answer on Stackoverflow
Solution 35 - JavascriptSunil GautamView Answer on Stackoverflow
Solution 36 - JavascriptBijendra ChView Answer on Stackoverflow
Solution 37 - Javascriptcristian ismael GramajoView Answer on Stackoverflow
Solution 38 - JavascriptLuan NguyenView Answer on Stackoverflow
Solution 39 - JavascriptArun Prasad E SView Answer on Stackoverflow
Solution 40 - JavascriptRubén RuízView Answer on Stackoverflow