Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open new browser window in specific location of desktop 2

Status
Not open for further replies.

401R

Programmer
Joined
Oct 31, 2001
Messages
23
Location
US
I've seen this before where several small browser windows were opened on teh desktop to a specific location, each window contained a portion of a big picture and all the browser windows are arranged to form the big picture. Any one know how to do this?
 
STYLE="Left: 0px; Top: 10px;"

This is how you would put the windows where you want them.
This is a javascript function I wrote to open a window to display information:

function info()
{
window.open("NatInfo.htm","new2","channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no,width=275,height=230,top=5,left=5");
}

As you can see, it uses the CSS Top and Left to put the popup window where I want on the desktop.

I hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top