You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
<html> |
|
<head> |
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"> |
|
<title>Popup windows test</title> |
|
</head> |
|
<body> |
|
<h2>Popup windows test</h2> |
|
<b>Will be opened in new tab</b> |
|
<p> |
|
<a href="popup.html" target="_blank">Classic link</a> |
|
- target="_blank" link has to be opened in new tab |
|
</p> |
|
<p> |
|
<a href="javascript:window.open('popup.html')">Popup 1</a> |
|
- can be opened in new tab |
|
</p> |
|
<p> |
|
<a href="javascript:window.open('popup.html', '_blank')">Popup 2</a> |
|
- with second argument _blank |
|
</p> |
|
<b>Will be opened in popup window</b> |
|
<p> |
|
<a href="javascript:window.open('popup.html', '_blank', 'left=100,right=200')">Popup 3</a> |
|
- with left and righ |
|
</p> |
|
<p> |
|
<a href="javascript:window.open('popup.html', '_blank', 'width=150,height=150')">Popup 4</a> |
|
- with width and height |
|
</p> |
|
<p> |
|
<a href="javascript:window.open('popup.html', '_blank', 'width=150,height=150,left=15,top=20')">Popup 5</a> |
|
- with width, height, left and top |
|
</p> |
|
<p> |
|
<a href="javascript:window.open('popupwindows.html', '_blank', 'menubar=yes')">Popup 6</a> |
|
- with menubar (popupwindows.html) |
|
</p> |
|
<p> |
|
<a href="javascript:window.open('https://kde.org', '_blank', 'status=yes')">Popup 7</a> |
|
- with statusbar (kde.org) |
|
</p> |
|
<p> |
|
<p> |
|
<a href="javascript:window.open('form.html', '_blank', 'toolbar=yes')">Popup 8</a> |
|
- with toolbar (form.html) |
|
</p> |
|
<p> |
|
</body> |
|
</html>
|
|
|