This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function NewWindow() { | |
| window.open('page.html','about:blank','resizable=yes,scrollbars=yes,status=0,width=600,height=620'); | |
| } | |
| // Call the function when a button is clicked. | |
| // NOTICE: This will not work on mobile devices. On mobile devices this would function the same way target _blank on <a> HTML tag would. (Opens in new tab) |