Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback: irt.org FAQ Knowledge Base Q366

Feedback on: irt.org FAQ Knowledge Base Q366

Sent by Nina Melhem on February 25, 2000 at 20:16:16: - feedback #862

Length:
Too short

Comments:
Needs more detail with some examples on how to solve the problem.


Sent by Gulla Pedersen on August 24, 2000 at 04:31:48: - feedback #1663

Technical:
Not technical enough

Comments:
I was just looking for this very funktion, because I don't need the confirm meesage. But since I' not so experienced with these scripts it dosn't help me very much.
So when you say use the replace() method, how does my code look then, when it so far says:

<HTML>
<HEAD><TITLE>window closer
</TITLE></HEAD>
<BODY ONLOAD="self.close()">
</BODY)
>/HTML>

Hope you'll take time to answer this. Thanks in advance.


Sent by Richard Ball on November 29, 2000 at 13:50:29: - feedback #2080

Worth:
Very worth reading

Comments:
Please could you expand on the Replace method, I am new to Java and Javascripting and have no idea on how to do this!

Thanks In Advance

Rick

TTFN


Sent by Mirko Plazotta on August 03, 2001 at 08:37:56: - feedback #3045

Worth:
Very worth reading

Length:
Just right

Technical:
Just right

Comments:
Try following function:

<script language="Javascript">
function windowclose() {
window.opener = 'another';
window.close();
}
</script>

<body onload="windowclose();">

...


Sent by Dean on December 03, 2001 at 15:14:17: - feedback #3392

Worth:
Worth reading

Comments:
My understanding of closing windows was that you can only close windows without the "Are you sure...?" box, when you close windows that you have opened with Javascript, but if you try to close a regular browser window, you will get the dialog box. Is this wrong?


Sent by Ricardo Carrillo on January 10, 2002 at 08:50:34: - feedback #3476

Comments:
Try:

top.close();


Sent by Sree on January 24, 2002 at 20:05:22: - feedback #3528

Technical:
Not technical enough

Comments:
Hi, I just wud like to know more about replace() method and usage while closing the window.
Pls let me know.
Thnks in advance.

Rgds,
Sree.


Sent by Brett Strydom on April 22, 2002 at 08:09:32: - feedback #3798

Length:
Too short

Technical:
Not technical enough

Comments:
Can you please provide more information on this. My code looks like the following:

function openWin() {
window.name = 'WindowLoader';
myWin = open("Url", "displayWindow","width=500,height=500,status=no,toolbar=no,menubar=no,titlebar=no");
self.close();
}

If possible
Thanks


©2018 Martin Webb