Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help with two onLoad statements 1

Status
Not open for further replies.

jjchap

Technical User
Sep 1, 2003
1
US
I am attempting to refresh two frames with one onLoad. The following code refreshes the first frame but does not refresh the second.

<body onLoad '&quot;top.Eml.location.href='../../_Shell/Comments.asp'&quot; target = &quot;Eml&quot;';'&quot;top.Help.location.href = '../../_Shell/Help.asp?which=g'&quot; target=&quot;Help&quot;'>

Any help is greatly apprciated.
 
your formatting looks a little wonky. try..
<body
onLoad=&quot;top.Eml.location.href='../../_Shell/Comments.asp'; top.Help.location.href = '../../_Shell/Help.asp?which=g'&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top