open a popup window

  • Thread starter Thread starter Sirisha
  • Start date Start date
S

Sirisha

Open a popwindow , that popwindow is not having any
titlebar,addressbar,menu bar




Sirisha
 
This is what I did to open a new window with a screenshot

I created a basic HTML page with the screenshot in (see YOUR URL HERE in
function below)

I called the code like this:

<a href="javascript: OpenWindow()">Screenshot</a>

Which called this code:

<SCRIPT language="Javascript">
function OpenWindow()
{
window.open("YOUR URL HERE", "SOME_NAME HERE",
"menubar=0,resizable=0,width=310,height=250,top=200, left=350");
}
</SCRIPT>

I hope this helps

Crouchie1998
MCP MCSE
 
Back
Top