I created a function to open another html page, I currently use the following code to accomplish this task
HTML code:
External JS file code:
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.
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.