Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > onload event for child window

Reply
Thread Tools

onload event for child window

 
 
ng
Guest
Posts: n/a
 
      07-13-2005
function w1open(){
alert("window loaded");
}
function wackOpen(){
var
my_window1=window.open('http://www.yahoo.com','','left=700,top=700','dependent=ye s');

my_window1.onload=w1open;
}
wackOpen();


1. onload event is never captured..or by the time its get set the page
is loaded.
2. I am getting security issues if i use
my_window1.document.readyState.
3. Is there not way to check whether childwindow is loaded or not.
I have been through many threads in this group but none have a
solution. please help me out

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Why doesn't frameset onload event get called when each of the frames has an onload? adnanx82@gmail.com Javascript 5 05-15-2005 01:58 PM
Results from child window submit into parent window, then child closes -- How To? Spammay Blockay Javascript 1 02-04-2005 12:47 PM
window.onload and body.onload differences David Otton Javascript 2 11-04-2004 04:34 PM
[HELP] Why the child window reopen a new child window ? bhchng ASP .Net 0 01-13-2004 07:17 AM
How do I: Main thread spawn child threads, which child processes...control those child processes? Jeff Rodriguez C Programming 23 12-09-2003 11:06 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57