Personal Memos
日常のメモ書き的なことを書いてあります。
Showing posts with label
javascript
.
Show all posts
Showing posts with label
javascript
.
Show all posts
Monday, January 18, 2010
Target other frame using javascript
Change(move) other frame's page from one child frame.
function moveFramePage() {
parent.other_frame_name.location = "http://target_page.html";
}
Javascript move page
To move page with javascript's "document.href"
function movePage() {
document.href = "http://target.url.com";
}
<a href="#" onclick="movePage"> Clict To Move !! </a>
For firefox (only??),
#(sharp?) in href value is important
Home
Subscribe to:
Posts (Atom)