473,385 Members | 1,320 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Closing a window

I am creating HTML documents that have the same structure as shown
below. As a convenience to the user, I wanted to simply put a button
on the bottom of the page to close the window. However, since the
window is not created by a script, the onclick command does not work.
These files are simply meant to be clicked on by the user and
displayed in their browser of choice. Any suggestions?

Kevin Partin

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html">
<title>Eigenvalue Summary Table</title>
<style type="text/css">
<!--

h1 {
font-family: arial,helvetica,sans-serif;
font-size: large;
font-weight: bold;
text-align: center;
}

subtitle {
font-family: arial,helvetica,sans-serif;
font-size:small;
font-weight: bold;
text-align: center;
}

* {
font-family: courier new,courier,monospace;
}

-->
</style>
</head>
<body>
<h1>Real Eigenvalue Summary Table</h1>
<table border="1" cellspacing="0" align="center"
style="width: 80%; text-align: right;"
title="Real Eigenvalue Summary Table" cols="4">
<tbody>
<tr style="text-align: center;">
<td style="font-family: arial,helvetica,sans-serif;">Mode</td>
<td style="font-family:
arial,helvetica,sans-serif;">Eigenvalue</td>
<td style="font-family:
arial,helvetica,sans-serif;">Radians</td>
<td style="font-family: arial,helvetica,sans-serif;">Cycles</td>
</tr>
<tr>
<td>1</td>
<td>2.0</td>
<td>2.0</td>
<td>2.0</td>
</tr>
</tbody>
</table>
<hr align="left" noshade size="1px" width="100%">
<form style="text-align: center;">
<input type="button" value="Close"
onclick="window.close()" style="font-family:
arial,helvetica,sans-serif;">
</form>
</body>
</html>
Jul 23 '05 #1
7 2106
Kevin Partin wrote:
I am creating HTML documents that have the same structure as shown
below. As a convenience to the user, I wanted to simply put a button
on the bottom of the page to close the window. However, since the
window is not created by a script, the onclick command does not work.
These files are simply meant to be clicked on by the user and
displayed in their browser of choice. Any suggestions? <input type="button" value="Close"
onclick="window.close()" style="font-family:
arial,helvetica,sans-serif;">


Personally, I would learn to come to grips with the "limitations" of
javascript.
The reason that browsers are reluctant to close the main window is that
is a poor ui technique, and it often leaves the user confused.
Mick
Jul 23 '05 #2
On 6 May 2004 08:16:44 -0700, Kevin Partin
<Ke************@Alumni.UTexas.net> wrote:
I am creating HTML documents that have the same structure as shown
below. As a convenience to the user, I wanted to simply put a button
on the bottom of the page to close the window. However, since the
window is not created by a script, the onclick command does not work.
These files are simply meant to be clicked on by the user and
displayed in their browser of choice. Any suggestions?


Please read the FAQ, especially:

<URL:http://jibbering.com/faq/#FAQ4_14>

[snip]

Mike

--
Michael Winter
M.******@blueyonder.co.invalid (replace ".invalid" with ".uk" to reply)
Jul 23 '05 #3
Michael Winter wrote:
On 6 May 2004 08:16:44 -0700, Kevin Partin
<Ke************@Alumni.UTexas.net> wrote:
I am creating HTML documents that have the same structure as shown
below. As a convenience to the user, I wanted to simply put a button
on the bottom of the page to close the window. However, since the
window is not created by a script, the onclick command does not work.
These files are simply meant to be clicked on by the user and
displayed in their browser of choice. Any suggestions?

Please read the FAQ, especially:

<URL:http://jibbering.com/faq/#FAQ4_14>


And then know that it is technically incorrect close to 90% of the time?

No, I don't want to get into a debate about whether I can/should close a
window. Its bad design, but it doesn't change the truth.
--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/
Jul 23 '05 #4
Michael Winter wrote:
On 6 May 2004 08:16:44 -0700, Kevin Partin
<Ke************@Alumni.UTexas.net> wrote:
I am creating HTML documents that have the same structure as shown
below. As a convenience to the user, I wanted to simply put a button
on the bottom of the page to close the window. However, since the
window is not created by a script, the onclick command does not work.
These files are simply meant to be clicked on by the user and
displayed in their browser of choice. Any suggestions?

Please read the FAQ, especially:

<URL:http://jibbering.com/faq/#FAQ4_14>

[snip]

Mike

Some browsers will close the window under some circumstances, the FAQ
fails to address the consequences of closing the main window, rather the
FAQ categorically states that it is not possible.
Mick
Jul 23 '05 #5
On Thu, 06 May 2004 16:13:41 GMT, Mick White
<mw******@BOGUSrochester.rr.com> wrote:

[snip]
Some browsers will close the window under some circumstances, the FAQ
fails to address the consequences of closing the main window, rather the
FAQ categorically states that it is not possible.


I realise that (I know the hack), but what exactly is the point in
relaying the existance of a browser flaw to achieve something that
shouldn't be attempted anyway? Particularly if it doesn't work with all
browsers.

Closing the window via a link or button doesn't provide convenience, just
an alternative way to do something that you could already do three other
ways. Users know about the button in the title bar (that is, the X in
Windows and KDE). Most will know about an exit option in the File menu.
Some will also know about the Alt+F4 keystroke. An application specific
way is not expected and completely unnecessary. Why encourage it?

Mike

--
Michael Winter
M.******@blueyonder.co.invalid (replace ".invalid" with ".uk" to reply)
Jul 23 '05 #6
Michael Winter wrote:
On Thu, 06 May 2004 16:13:41 GMT, Mick White
<mw******@BOGUSrochester.rr.com> wrote:

[snip]
Some browsers will close the window under some circumstances, the FAQ
fails to address the consequences of closing the main window, rather
the FAQ categorically states that it is not possible.

I realise that (I know the hack), but what exactly is the point in
relaying the existance of a browser flaw to achieve something that
shouldn't be attempted anyway? Particularly if it doesn't work with all
browsers.

Closing the window via a link or button doesn't provide convenience,
just an alternative way to do something that you could already do three
other ways. Users know about the button in the title bar (that is, the X
in Windows and KDE). Most will know about an exit option in the File
menu. Some will also know about the Alt+F4 keystroke. An application
specific way is not expected and completely unnecessary. Why encourage it?

Mike


I agree with your sentiments entirely, I just have a problem with
"impossible". It may be better to acknowledge that it can be done, for
the sake of truth, if nothing else.
Mick
Jul 23 '05 #7
Mick White wrote:
Michael Winter wrote:
On Thu, 06 May 2004 16:13:41 GMT, Mick White
<mw******@BOGUSrochester.rr.com> wrote:

[snip]
Some browsers will close the window under some circumstances, the FAQ
fails to address the consequences of closing the main window, rather
the FAQ categorically states that it is not possible.


I realise that (I know the hack), but what exactly is the point in
relaying the existance of a browser flaw to achieve something that
shouldn't be attempted anyway? Particularly if it doesn't work with
all browsers.

Closing the window via a link or button doesn't provide convenience,
just an alternative way to do something that you could already do
three other ways. Users know about the button in the title bar (that
is, the X in Windows and KDE). Most will know about an exit option in
the File menu. Some will also know about the Alt+F4 keystroke. An
application specific way is not expected and completely unnecessary.
Why encourage it?

Mike


I agree with your sentiments entirely, I just have a problem with
"impossible". It may be better to acknowledge that it can be done, for
the sake of truth, if nothing else.

I stopped posting the "hack" and even the path to get to it via google
(search the archives for "unconditional truth" and you will find it),
not because I got tired of it, but because I got tired of the "you
shouldn't do that" argument. No, you shouldn't, but it doesn't change
the fact that more and more browsers are implementing this "bug" (Yes,
its a bug). But its hard to call/believe something is a bug when its so
prevelant.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/
Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Derek | last post by:
Hello: I want to capture the event when a browser is closing, to give to the user the posibility of close or no this browser. When the browser is closing, this show a confirm window with two...
10
by: Tom Szabo | last post by:
Is there an event when that triggers when the window is closing.... I am talking about when the user clicks on the cross on the right top corner of the window!!!
5
by: Ron L | last post by:
I have an MDI application with a number of child windows. In each child window I am catching the Closing event and having the child window decide if it should set cancel to true. The intent here...
2
by: Ron L | last post by:
I have an MDI application which opens a number of child windows, each of which could have data in a state that needs to be saved. Each child window catches its Closing event and cancels it if the...
4
by: bbass | last post by:
thanks to all that replyied to my previous post with the following code in question: <a href="merc.htm" target="_new_merc" onfocusout=window.close class="left_link"> i understand that the...
1
by: Chris Bruce | last post by:
In my application I need a way to distiguish between the following events: 1. When a user closes an MDI child window. 2. When the user closes the MDI parent window which subsequently closes the...
3
by: Saradhi | last post by:
Hi, I wanted to stop the VS.NET Window from closing inside my C# AddIn. I Know that OnBeginShutdown() funciton will be called whenever the user tries to close the VS.NET window. I want to...
10
by: Charles Law | last post by:
For some reason, when I click the X to close my MDI parent form, the action appears to be re-directed to one of the MDI child forms, and the parent remains open. I am then unable to close the...
2
by: Tom | last post by:
How is the best way to avoid validation when closing a window? For instance, I have a Windows Forms window which has a validation event for a text box. However, if one enters invalid data in then...
2
by: javanet | last post by:
Hi all, 1) i opened a parent window. 2) then i opend a child window thruogh this parent window. Now i want to close child window before closing the parend window means my clients can not be...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.