-
Popup video
I’m having some issues with a popup window that I’ve been trying to have load when a visitor visits my webpage.
I want the popup to load after the page loads, be anchored to the bottom right of the page, no menubar, no statusbar, not scalable, etc etc.
The issues I’m running into are that I can’t seem to figure out how to anchor it to the bottom of the page, and the bars don’t seem to get removed even with coding.
I’ve done some searching and pieced together some of the code but most of the posts and info are out of date.
Sample code:
<html>
<head>
<title>Sample popups</title>
<script language="JavaScript">
<!--
function popupvideo(url,name)
{
new_window = window.open('https://www.3m3dformula.com/allison2.html','3m3d','width=500,height=500,bottom=0,right=0,status=No,menubar=No,scrollbars=No,toolbar=No')
}
// -->
</script>
</head>
<body onLoad="popupvideo()">
Your new window will open when this document loads
</body>
</html>Thanks in advance.