free hit counter

How to Open popup window with open.window method

How to Open popup window with open.window method
To open a new window by clicking on the link, you will need to use window.open method of javascript. Sample of popup window <a href="javascript: void(0)" onclick="window.open('popup.html', 'windowname1', 'width=200, height=77'); return false;">Click here for simple popup window</a> Now you can open a simple window, also this function can have different features of that window to ...