| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <head> | |
| 3 <meta http-equiv="x-ua-compatible" content="chrome=1" /> | |
| 4 <script language="javascript"> | |
| 5 function downloadInNewWindow() { | |
| 6 var download_url = "download_file.zip"; | |
| 7 window.open(download_url, 'download', 'toolbar=0,location=no'); | |
| 8 return false; // cancel form submission | |
| 9 } | |
| 10 </script> | |
| 11 </head> | |
| 12 <body onload="downloadInNewWindow();"> | |
| 13 <form method="POST" action="hero"> | |
| 14 <input onclick="return downloadInNewWindow()" value="Download" | |
| 15 id="downloadButton" type="button"> | |
| 16 </form> | |
| 17 </body> | |
| 18 </html> | |
| OLD | NEW |