FRIHOSTFORUMSSEARCHFAQTOSBLOGSDIRECTORY
You are invited to Log in or Register a Frihost Account!

Hot to get the location of page with js

 


imagefree
How to get the location and title of the opener pages in cases where:
1. A pages is opened with target="_blank"
2. A popup up is opened
3. A page is opened with target="_top" (infact i want to get the Referer URL and title in this case).

(suppose the opener is http://www.some-host.com/opener.html, and the target page is http://www.not-the-same-host.com/opened.html)

Is it possible with js to get this info?
Marcuzzo
for target="_blank" and window.open("... you can use
Code:
window.onload=function(){
   if ( window.opener ) {
      var openerStr = "URL: " + window.opener.location.href + "\n";
      openerStr += "TITLE: " + window.opener.document.title;
   }   
}
imagefree
thanks, i will test it.
What about the title and location of the REFERER page?
Marcuzzo
imagefree wrote:
thanks, i will test it.
What about the title and location of the REFERER page?


window.referer will be empty when you are working with offline pages, but I guess that you can access them the same way as soon as you have the handle to it
Related topics
Javascript Question
Login without server scripting
Javascript problems in Firefox 2? [box.net]
Looks crappy in Firefox
General .htaccess tutorial.
secrets of firefox
Why You Should Never Use Flash
Getting RSS feeds to appear on a page
Justification for War in Iraq
[JS] get vars in location.pathname
php or js?
preview my site
What wrong with this js file ? Need help .
[JS]Some must have Javascript and related stuffs-updated!!!!
Question About Drop-Down search buttons
How to configure my webmail home page....
Javascript - can I read a $_SESSION variable passed in URL?
how can i upload my files directly from front page?
Page Resource
Windows XP Tricks & Tips!!!!
location of frame
CSS styling iframe page
HELP with Javascript!
My Personal Web Site - especially on the Japan trip
Reply to topic    Frihost Forum Index -> Scripting -> Html, CSS and Javascript

FRIHOST HOME | FAQ | TOS | ABOUT US | CONTACT US | SITE MAP
© 2005-2007 Frihost, forums powered by phpBB.