Basic JavaScript Question:
Download Job Interview Questions and Answers 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"
);
(
"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 Question | Next Question |
How to create an input box? | How to setting a cookie with the contents of a textbox? |