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

  • SEARCH
  • Home
  • 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 8154861
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:29:45+00:00 2026-06-06T16:29:45+00:00

I have a page (contrived example below) with a Google doc and a download

  • 0

I have a page (contrived example below) with a Google doc and a download link. When the link is clicked the iframe goes grey and doesn’t come back at all. I’ve stripped the page right down so it is only these two elements and it still happens.

This definitely happens in Firefox, Chrome and Safari.

Iframes not containing Google docs do not seem to have this problem.

Any ideas?

<html>
<head></head>
<body>
<iframe src="http://docs.google.com/document/d/1mCYGLa8-Qsz_nYdk_f_8YefqWKMyulwVl223rebRMqM/preview" width="660" height="648"></iframe>
<a class="download_link" href="http://fastdl.mongodb.org/osx/mongodb-osx-i386-2.0.6.tgz">Download</a>
</body>
</html>
  • 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. Editorial Team
    Editorial Team
    2026-06-06T16:29:47+00:00Added an answer on June 6, 2026 at 4:29 pm

    A bit of a nasty solution is to set target='_blank' on the link tag. This opens the request in a separate window but once the request has been registered as a download the window will close and leave the user on the original page with the new download in the background.

    This seems to work well on Chrome and Firefox but Safari leaves the new window whilst the download is going.

    Another solution is to reload the iframe setting setting its src attribute to itself. The only trouble with this is that the user will lose their scroll position.

    I opted for a hybrid solution but did make the massive assumption that all versions of Chrome and Firefox exhibit the same behaviour (closing the tab when the download starts). That’s probably incorrect so the browser detection should probably be refined.

    Or, hey, Google could fix Google docs 🙂

            // preserve the google doc in the iframe. else the iframe goes gray when a download link is clicked
            if (navigator.userAgent.indexOf('Chrome') != -1 || navigator.userAgent.indexOf('Firefox') != -1){
                // Chrome and Firefox open new tabs with target='_blank' but close them again when the download begins
                // the page itself is unaffected
                $('a.download_link').attr('target', '_blank');
            }
            else{
                // the above doesn't work on Safari and probably others so fall back to reloading the iframe contents
                $('a.download_link').live('click', function(){
                    $('iframe').each(function(id, frame){
                        frame.src = frame.src;
                    });
                });
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a html page on my localhost - get_description.html . The snippet below
I have an HTML report, with each print page contained by a <div class=page>
I have a 2.0 framework ASP.Net page that runs in our controled environment (IE
I have a div (.header) contained within other divs. When my page loads, momentarily
I have page where I load different videos.I use jw player as player if
I have page where I use model which can have different types (depending by
I have page named page--news.tpl.php, which i created for my news page. But after
I have page (Default1.aspx) in which I am redirecting to another page (Default2.aspx) using
I have page which is redirected from htaccess. now I can pass the German
I have Page Tab App, which has a landing page with a Log In

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.