Many times saw the implementation on other sites. You click on the link, and it loads on top of the current browser window with a new window. And not a full screen, but in a minimized state. A bit like delphi frames.
How can I create such a window?
Many times saw the implementation on other sites. You click on the link, and it loads on top of the current browser window with a new window. And not a full screen, but in a minimized state. A bit like delphi frames.
How can I create such a window?
To specify the size of the window being opened, you will have to use javascript :
<a href="http://www.google.ru/" onclick="window.open(this.href, 'frame', 'left=50,top=50,width=720,height=480,toolbar=1,resizable=0'); return false;" >ะัะบัััั Google</a>
Source: https://ru.stackoverflow.com/questions/238769/
All Articles