faqts : Computers : Programming : Languages : JavaScript : Frames

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

130 of 160 people (81%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

How can I change the URL of a frame?
How can I make a frame display a different URL?

Jun 15th, 2000 06:14
Acebone, Nathan Wallace, Martin Honnen


If you just want to change the url use

  parent['frameName'].location.href = 'whatever.html'

or

  parent.frameName.location.href = 'whatever.html'