I am working with web apps, and I am wondering if there is a way to open a link in an app-type window using HTML? Something like this:
<a href="link" target="_app">My App</a>
This question is related to
html
Something like this?
<a href="#" onClick="MyWindow=window.open('http://www.google.com','MyWindow','width=600,height=300'); return false;">Click Here</a>