mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
46f8fde8f9
Fixed the Chromium1BeforePopup event in PopupBrowser Fixed the PopupBrowser.html file to use a different window name for the new popup windows.
24 lines
954 B
HTML
24 lines
954 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<p>The following button opens google.com in a popup window.</p>
|
|
<button onclick="return popitup('https://www.google.com')">Click me to open Google</button><br/><br/>
|
|
<button onclick="return popitup('about:blank')">Click me to open blank</button><br/><br/>
|
|
<button onclick="return popitup('file:///PopupBrowser.html')">Click me to open a file</button><br/><br/>
|
|
<button onclick="return popitup('https://www.w3schools.com/HTML/html5_draganddrop.asp')">Click me to open a drag and drop example</button><br/><br/>
|
|
<button onclick="return popitup('https://code-boxx.com/simple-drag-and-drop-file-upload/')">Click me to open a drop file example</button><br/><br/>
|
|
|
|
<script language="javascript" type="text/javascript">
|
|
<!--
|
|
function popitup(url) {
|
|
newwindow=window.open(url,'name' + Math.floor(Date.now() / 1000),'height=500,width=700');
|
|
if (window.focus) {newwindow.focus()}
|
|
return false;
|
|
}
|
|
|
|
// -->
|
|
</script>
|
|
|
|
</body>
|
|
</html> |