Reputation: 21
how to open the one page to the in new browser windows in coding?
Upvotes: 0
Views: 121
Reputation: 19228
you can do this with the help of javascript function window.open
window.open ("http://www.example.com","yourwindow");
Upvotes: 1