Feedback on: irt.org FAQ Knowledge Base Q366
Length:
Too short
Comments:
Needs more detail with some examples on how to solve the problem.
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.
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
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();">
...
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?
Comments:
Try:
top.close();
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.
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