Tag: resize popup window

  • How to open a popup window?

    How to open a popup window?

    Hello, friends today we will learn how to open a new popup window using javascript. To open a new window by clicking on the button/any link, we will need to use the window. open method of javascript. code of a popup window Example code : <a href=”javascript: void(0)” onclick=”window.open(‘phpglossary-open-new-popup-window.html’, ‘phpglossary’, ‘width=200, height=200’); return false;”>Click here</a>