Feedback on: The JavaScript Pop-up Window Primer
I wonder, however, wether or not there is a method available for passing back information to the parent window.
For instance if a user has resized the pop up window, then on closing can the parent window receive the newly set width and height values so that next time the window is loaded it will be loaded at the user defined size.
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
It was a good article, however the one problem i have is that you when i try and write on the fly to a pop up window IE4 gives me the error class doesn't support automation how can you get around this.
Thanks very much
Worth:
Very worth reading
Comments:
Your article hit the "window" topic on the head. Thanks from a Javascript newbie.
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
Is there a way to make sure only one instance of the popup window is opened?
Worth:
Very worth reading
Comments:
Hello (and thanks for this great site)!
I thing there are two errors in your article on pop-up windows: Source code listing of example 9 and 10.
EXAMPLE 9: You define
myWindow9=...
but call
msgWindow9.document.write
EXAMPLE 10: You define
myWindow10=...
but call
newWindow10.opener
Regards,
Armin
Worth:
Worth reading
Comments:
I was reading your popup window article, and thought the below code might have had an error. I wasn't sure. Shouldn't the windowHandler be named "msgWindow9" instead of "myWindow9" for the rest of the code to work? (it's in the Writing Things Down section of the article).
<SCRIPT LANGUAGE="JavaScript"></SCRIPT>
Worth:
Very worth reading
Comments:
The only thins is, the last example (the practical calendar) has no source code :-(
Worth:
Very worth reading
Length:
Just right
Comments:
Great Primer.
Here's a question.
If a child window is minimized,
and the main window attempts to open it again, the new content will go to the minized window and the user will not see it.
Is there anyway to have the "onload" function restore the window to its non-minimized size.
Worth:
Worth reading
Comments:
The form after the sentence:
Which you can try out for yourself:
errors in NS 4.07 windows 95 with:
this.form.Resizable has no properties.
JavaScript Error: http://www.irt.org/articles/js128/, line
413:
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
Very good an informative pages about pop-up-windows.
I have used yor example no. 5, but now I want to replace the automatic generated submit-button with a small gif-file. Can you help me?
Yours
Per Hofman Hansen
http://www.silkeborg.bib.dk/elekby/personale/~hofman/default.html
and webmaster for Silkeborg Public Library
http://www.silkeborg.bib.dk/
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
The only problem I have with the Window.open function is that when you write a script to print the child window, it prints the parent window instead.
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
I found out everyhting I was looking to find!
I'll be back.
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
Comment on http://tech.irt.org/articles/js128/index.htm :
<body onBlur="setTimeout=('window.focus()',1000)">
returns a JavaScript-error in IE5.
I think the code should read:
<body onBlur="setTimeout('window.focus()',1000)">
without the second =
Comments:
I am just a beginner at JavaScript, couldn't find in your doc the following info:
how to generate a new 100x200 pixel window vertically centered, horizontally at the right side of the screen.
A hint would be appreciated.
Worth:
Very worth reading
Comments:
This is one of the best articles I've read in a long time. I am an ASP programming trying to learn more about Java for the obvious reasons. I learn a lot in a very short period of time. Can't find enough good programming content on the web sometimes. Thanks.
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
Really worthy, I could gain the sufficeint things about a pop-up window and the exact detail that i wanted from your notes.
Worth:
Worth reading
Comments:
I've bookmarked it I use it so often. It's a great resource. Keep up the effort.
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
Just the thing I was looking for! I was searching for ages for this info. Great article. Short, and to the point.
Regards,
Chris Holmes.
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
you haven't include how to make a pop up window when a window is close... what method can trigger the appearance of a pop up window on the parent window close event?
Worth:
Worth reading
Comments:
There is a java script bug in example 10. The object msWindow10 is referenced but it should be myWindow10.
Steffen
Worth:
Worth reading
Length:
Just right
Comments:
I could follow your instructions easily.I wanted to know if I have multiple pictures on a page and they are different sizes how do I set up the window to accomidate different size pictures.I see the set up in the head one size, but multiple sizes I don't quite understand how to do that. Thanks for any help you can provide. Rick
Worth:
Very worth reading
Length:
Just right
Comments:
Frankly I had forgotten that this article was where I began my foray into pop up windows.
Thanks
Worth:
Very worth reading
Comments:
This page helped me do what I needed to do. The annotation is good and the demonstrations were very handy.
Thanks
Length:
Just right
Comments:
I have an issue I am attemting to resolve, while researching I found your reference articles. In so reading I found that you have the same issue!!!
Date selector on Window primer page http://tech.irt.org/articles/js128/index.htm
If you set focus to opener window without selecting date on calendar child remains open, clicking selet date button reload child but parent retains focus.....
Worth:
Very worth reading
Comments:
I have created a javascript pop-up to display a "HowTo" file. I used the commmand onLoad="parent.close()" to close the parent browser window so that only the pop-up is displayed on the desktop. The problem is that a Microsoft Internet Explorer pop-up dialog opens as follows:
The web page you are viewing is trying to
close the window.
Do you want to close this window?
Yes button No button
Are there any arguments to the onLoad=parent.close() command or some way to get rid of the dialog. I just want my pop-up with no parent browser.
Length:
Just right
Comments:
Re: Per Hofman Hansen
You should be able to use a GIF as a submit button, just do:
<INPUT TYPE=Image SRC="http..
instead of
<INPUT TYPE=Submit ETC..
and it will behave like a Submit button. :)
Length:
Just right
Comments:
Re: Per Hofman Hansen
(Oops) You should be able to use a GIF as a submit button, just do:
<INPUT TYPE=Image SRC="http..
instead of
<INPUT TYPE=Submit ETC..
and it will behave like a Submit button. :)
Worth:
Very worth reading
Comments:
Nice site,,easy to follow..
Is there a way of creating a mouse over pop up window that doesnt have and title,,etc(x to close window or _ to minimise window)?? just a box that only has text with a border(table)..
thanks..
sp..
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
how does one remove the tab at the top and the status bar at the bottom that shows on all the "onclick" popups... this is not showing when one uses script to lauch popup on open.