Window.open with properties using javascript
It is used to open a URL in new window with properties. It is working on all browsers
window.open('http://www.google.com', 'mywindow', 'menubar=1,resizable=1,width=350,height=250');
window.open('http://www.google.com', 'mywindow', 'menubar=1,resizable=1,width=350,height=250');
Comments
Post a Comment