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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

open plain pop-up window

Status
Not open for further replies.

mcghee31

IS-IT--Management
Dec 13, 2007
12
0
0
US
I created a function to open another html page, I currently use the following code to accomplish this task

HTML code:

Code:
<input type="text"  name="test" onclick="opentime()" />

External JS file code:

Code:
function opentime()
{
window.open("TimeAMPM.htm","","width=175,height=15,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0");
}

The problem is that when the windows opens it still has the minimize option and text at the top and bottom info.
I want a plain window with only the "X" open to close it. I guess I want a simple pop-up window also I want it to
be position to the bottom right side of the text box that calls the function.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top