in reply to Re^6: Finding out Browser History Length
in thread Finding out Browser History Length

So you want to add information to the page when it's opened in a new window. You can't do that in perl, since you can only know if the window is "new" (i.e. has no history) in javascript - i.e. AFTER the page is loaded.

I'd probably just add a javascript to each page which will add the information if the history length is 1, and leaves the page alone if not. No perl required.

  • Comment on Re^7: Finding out Browser History Length