Answers for "window open in popup"

5

javascript open url

window.location.href = "http://example.com/";
Posted by: Guest on May-21-2020
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 "Javascript"

Browse Popular Code Answers by Language