Basic JavaScript Question:
Download Questions PDF

How to open a window with no toolbar, but with the location object?

Answer:

window.open
(
"http://www.globalguideline.com",
"Online Web Tutorials",
"resizable=yes, " +
"status=yes," +
"toolbar=yes," +
"location=yes," +
"menubar=yes," +
"scrollbars=yes," +
"width=800," +
"height=400"
);

Download JavaScript Interview Questions And Answers PDF

Previous QuestionNext Question
How to create an input box? How to setting a cookie with the contents of a textbox?