, <a href="page.htm" target="_top"> HTML. Javascript :
top.location.href = 'page.htm';
, <a href="page.htm" target="_self"> HTML. Javascript :
self.location.href = 'page.htm';
, <a href="page.htm" target="_parent"> HTML. Javascript :
parent.location.href = 'page.htm';
, <a href="page.htm" target="thatframe"> HTML. Javascript :
top.frames['thatframe'].location.href = 'page.htm';
iframe , <a href="page.htm" target="thatframe"> HTML. Javascript :
self.frames['thatframe'].location.href = 'page.htm';