Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
155
rated 0 times [  158] [ 3]  / answers: 1 / hits: 15760  / 14 Years ago, thu, august 12, 2010, 12:00:00

Possible Duplicate:

JavaScript open in a new window, not tab






How can I open a new window (not a tab!) when I call a window.open function.
That window should not contain an toolbar, or menu options.



Thanks


More From » javascript

 Answers
64
window.open(http://www.google.com,
name_your_window,
location=1,status=1,scrollbars=1,resizable=no,width=200,height=200,menubar=no,toolbar=no);


For a list of the parameters available, see here.


[#95944] Tuesday, August 10, 2010, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
justynkaina

Total Points: 742
Total Questions: 83
Total Answers: 102

Location: Hong Kong
Member since Tue, Oct 19, 2021
3 Years ago
;