File indexing completed on 2024-04-21 04:56:31

0001 <html>
0002 <head>
0003   <meta http-equiv="content-type" content="text/html; charset=utf-8">
0004  <title>Popup windows test</title>
0005 </head>
0006 <body>
0007 <h2>Popup windows test</h2>
0008 <b>Will be opened in new tab</b>
0009 <p>
0010 <a href="popup.html" target="_blank">Classic link</a>
0011 - target="_blank" link has to be opened in new tab
0012 </p>
0013 <p>
0014 <a href="javascript:window.open('popup.html')">Popup 1</a>
0015 - can be opened in new tab
0016 </p>
0017 <p>
0018 <a href="javascript:window.open('popup.html', '_blank')">Popup 2</a>
0019 - with second argument _blank
0020 </p>
0021 <b>Will be opened in popup window</b>
0022 <p>
0023 <a href="javascript:window.open('popup.html', '_blank', 'left=100,right=200')">Popup 3</a>
0024 - with left and righ
0025 </p>
0026 <p>
0027 <a href="javascript:window.open('popup.html', '_blank', 'width=150,height=150')">Popup 4</a>
0028 - with width and height
0029 </p>
0030 <p>
0031 <a href="javascript:window.open('popup.html', '_blank', 'width=150,height=150,left=15,top=20')">Popup 5</a>
0032 - with width, height, left and top
0033 </p>
0034 <p>
0035 <a href="javascript:window.open('popupwindows.html', '_blank', 'menubar=yes')">Popup 6</a>
0036 - with menubar (popupwindows.html)
0037 </p>
0038 <p>
0039 <a href="javascript:window.open('https://kde.org', '_blank', 'status=yes')">Popup 7</a>
0040 - with statusbar (kde.org)
0041 </p>
0042 <p>
0043 <p>
0044 <a href="javascript:window.open('form.html', '_blank', 'toolbar=yes')">Popup 8</a>
0045 - with toolbar (form.html)
0046 </p>
0047 <p>
0048 </body>
0049 </html>