Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
javascript child window
Name: osaru Date: April 18, 2005 at 19:34:12 Pacific OS: windows CPU/Ram: 1g
Comment:
I know that I can access form object in Javascript by doing: onClick="document.myForm.myText.value='it works'" However when I do this from a child windows generated from a parent window, it doesn't work at all. I have to do it following way: onClick="this.value='it works'" Why I can only use 'this' ?
Summary: Hi. I want to use javascript to open a new window in the center of the screen: <a onClick="javascript:window.open('myfile.htm', 'WinName', 'width=800,height=500,left=200,top=200');" Window target=...
Summary: Is it possible to initiate (start) a javascript function in a parent window from a child window? If so, how? For example, there is a function in the parent window called alertMsg(). I want to be able ...