Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove title bar ,menu bar ,navigation bar ,tab bar ,address bar and statusbar of browser

How can I remove the title bar, menu bar, navigation bar, tab bar, address bar , status bar of the browser using jquery.

The thing is that I am calling a dialog to open a poup window which should fit the monitor screen fully and should not show any bars of the browser.

like image 571
subbusaabu Avatar asked Sep 06 '25 03:09

subbusaabu


1 Answers

The fullscreen API provides an easy way for web content to be presented using the user's entire screen. This article provides information about using this API.

The API lets you easily direct the browser to make an element and its children, if any, occupy the fullscreen, eliminating all browser user interface and other applications from the screen for the duration.

Live Example (Press Enter after site loads)

This is also a good read.

like image 117
Yasser Shaikh Avatar answered Sep 07 '25 20:09

Yasser Shaikh