Answers for "window.open new window not tab"

4

javascript open in new window not tab

//open in new window, not new tab
window.open('https://www.codegrepper.com', '_blank', 'toolbar=0,location=0,menubar=0');
Posted by: Guest on August-05-2019
0

javascript popup in small window

<a href="/index2.php?option=com_jumi&fileid=3&Itemid=11"
   onclick="window.open(this.href,'targetWindow',
                                   `toolbar=no,
                                    location=no,
                                    status=no,
                                    menubar=no,
                                    scrollbars=yes,
                                    resizable=yes,
                                    width=SomeSize,
                                    height=SomeSize`);
 return false;">Popup link</a>
Posted by: Guest on September-17-2020

Code answers related to "window.open new window not tab"

Code answers related to "Javascript"

Browse Popular Code Answers by Language