Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 62379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:28:00+00:00 2026-05-10T18:28:00+00:00

I am writing a web application that will run in kiosk mode on a

  • 0

I am writing a web application that will run in kiosk mode on a touch screen. I am currently only targeting it for running on Firefox 3. A few of the use cases I have need to visit external sites. I wish to do so with an embedded browser, which I’m tackling with the help of an <iframe>. I need back/forward buttons for the embedded home page.

I’ve managed to access the history object of the iframe with

var w = document.getElementById('embeddedBrowser').contentWindow; w.history.back(); 

The history of the embedded window is the same as that of the parent window. Therefore for a newly loaded <iframe>, this call will go back to the previous page of the system.

Is there any way to avoid this or a more correct way of solving this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T18:28:00+00:00Added an answer on May 10, 2026 at 6:28 pm

    Because there is only one history object shared within each tab this seems impossible. The proper way around it would be to test window.history.current or window.history.previous before calling back. Unfortunately, window.history.current is privileged and so not available to unsigned pages.

    Here’s a rough sketch of a messy workaround:

    <iframe src='somepage.html' name='myframe'></iframe> <p><a href='#' id='backBtn'>Back</a></p>  <script type='text/javascript'>    document.getElementById('backBtn').onclick = function () {     if (window.frames['myframe'].location.hash !== '#stopper') {       window.history.back();     }     // ... else hide the button?     return false; // pop event bubble   };   window.frames['myframe'].onload = function () {     this.location.hash = 'stopper';   };  </script> 

    Of course, this is assuming that no (#hash) browsing ever goes on in parent window, and so on, but it seems to work for the problem of limiting back movement.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a web application that will have plugins. The plugins will be .DLL
I'm writing a web based application that will have its own authorization/authentication mechanism (traditional
I'm writing a Java application that will run for a long time (essentially, it
I'm writing an ASP.NET web application which will run on Windows Server 2008 (IIS7).
I am writing a web application that requires user interaction via email. I'm curious
I'm writing a web application that decodes Morse Code that is tapped in using
I am writing a web application that works with exchange, and so needs to
I have a web application that I'm writing (C#, MSSQL) and I need to
I am writing a simple Python web application that consists of several pages of
I'm writing an .NET 3.5 web application that is using LinqToSql for the basic

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.