Link to home
Start Free TrialLog in
Avatar of rnsr
rnsrFlag for India

asked on

Remove all browser menu and buttons javascript or jquery

i am developing web application. i wish to remove all menu and buttons of every browser. how can i do it. i wish only body to be viewed on browser.

i am using asp.net 4.0  c#

rajesh
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

I don't understand your question.. perhaps a picture would make your question clear
You can use Javascript window.open function and provide attributes like below
window.open("url","name",'height=800,width=1024,top=0,left=0,directories=no,titlebar=no,status=no,toolbar=no,menubar=no,navigationbar=no,location=no,resizable=no,scrollbars=no');

Open in new window

Avatar of rnsr

ASKER

I need browser when I open the site as - need_this.gif

Thanks in advance.
wrong.gif
need-this.gif
ASKER CERTIFIED SOLUTION
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Please check below link for full screen mode works only in chrome/FF etc. (exclude IE)
http://www.sitepoint.com/use-html5-full-screen-api/
Demo: http://blogs.sitepointstatic.com/examples/tech/full-screen/index.html

However it is not good option to view fullscreen mode, and API can only be initiated by a user gesture.
Avatar of rnsr

ASKER

Thanks for comments.  will try and revert back.