Opening popup windows in HTML

Viewed 181962

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>
4 Answers

Open a popup, a sample, link with in the same site.

 <a onclick="window.open('/Product/Product', 'popup', 'location=0,width=750,height=650,left=500,top=55'); return false;" class="btn btn-primary btn-sm">+</a>
Related