launch your web application in its own window

jim leahy

Active member
for all the web developers out there... i found this trick to free your web application from the browser window.
this is actually an html file running a javascript command. it will launch your web application in its own window
without the address bar, toolbar, and tabs. edit the file to replace the url with your own url, change the width
and height to fit your application, then save it as a .html file and then open it in the browser. you'll have to enable
popups for it. i tried it on chrome and firefox on linux and windows.

!DOCTYPE html><html><body><script>window.open("http://www.stockforensics.com", "_blank","height=800,width=900,menubar=no,location=no,toolbar=no,left=100,top=100")</script></body></html>
 
Top
Contact Us