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