Is it possible to "hide" the toolbars, bookmarks and the like from the browser?

0

With the following code, I can open a new window by hiding various browser components ...

<a href="#" onClick="javascript:visualControl('newpage.html'); return false;"> 

 SampleText!

</a>

function visualControl(str) {
    window.open(str, 'popupwindowalpha','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,menubar=no'); 
}

But I would like to open the page , hiding these components, is that possible?

OU connect and disconnect these components on the same page ...

* Important detail, eh for an internal application , for the corporate intranet just to make the cleaner look / p>

Thank you!

    
asked by anonymous 01.09.2016 / 01:50

1 answer

0

You can not do it the way you want, but there are two ways you can do something like that.

  • Using an HTML5 API Full Screen , to leave in full screen
  • Using a desktop application with Electron , using web technology like html, css and javascript. Using this, by default the whole navigation bar is hidden
  • 01.09.2016 / 05:34