Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
popup
<HTML>
<HEAD>
<TITLE>Small Popup sample</TITLE>
<SCRIPT LANGUAGE="VBScript">
Option Explicit
Dim objPopup
Set objPopup = window.createPopup
Sub btnGo_onclick()
With objPopup.document.body
.style.backgroundColor = "#ffdddd"
.style.border = "solid #9999ff 2px"
.innerHTML = _
"<div style=""background-color: #0000ff; color: #ffffff"">" _
& "Message from our sponsor" _
& "</div>" _
& "<div style=""color: #ff0000; text-align: center"">" _
& "Click anywhere outside this popup to close it." _
& "</div>"
End With
objPopup.show 100, 100, 180, 46, document.body
End Sub
</SCRIPT>
</HEAD>
<BODY>
<BUTTON id=btnGo>Pop up a dialog</BUTTON>
</BODY>
</HTML>