Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

opening a html file without title bar, address bar, tool bar

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
hello

how can I open a local html file with only Title Bar?

PLS. NOTE:
without pop up.

regards,
Navaneethakrishnan
navanee@equadriga.com
 
You can use a window.open() method.

newWin =window.open("test.html",'TheNewpop','fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no');

and in test.html add the following into the body tag
style="overflow:hidden"

Hope this solves your problem
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top