about: parent.frames[2].location.reload();

admin

Administrator
Staff member
what does this mean?<br />
<br />
parent.frames[2].location.reload();<br />
<br />
which one is parent, frames, frames[2] and where is the location?<!--content-->parent takes it to the parent page, presumably the frameset. frames[2] calls the third frame (remember, arrays start with 0) and location.reload() should really be location.reload(true) and will reload the current page (in your case, the third frame).<!--content-->
 
Back
Top