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 8094801
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T20:54:59+00:00 2026-06-05T20:54:59+00:00

If a user visits my websites example, from Safari Mobile how could I place

  • 0

If a user visits my websites example, from Safari Mobile how could I place there a blank page that says “Add To Homescreen.”? Once added it would show different content.

  • 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-05T20:55:00+00:00Added an answer on June 5, 2026 at 8:55 pm

    You’ll want to check two things. First, is it running on an iOS device? Second, is window.navigator.standalone == true?

    window.navigator.standalone is primarily used by Webkit browsers to indicate the app is in fullscreen (or standalone) mode. Plenty of devices (like phones running Android), support this property, but don’t have the option to ‘Add to Homescreen’ like iOS devices do, so you need to check both.

    Demo: jsFiddle

    Javascript:

    function isIOS() {
        var userAgent = window.navigator.userAgent.toLowerCase();
        return /iphone|ipad|ipod/.test( userAgent );
    };
    
    function isStandalone() {
        return ( isIOS() && window.navigator.standalone );
    };
    
    window.onload = function () {
        if( isStandalone() || !isIOS() ) { //either ios+standalone or not ios
            //start app
        } else {
            //display add to homescreen page
        };
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to adjust several views in the event that a user visits my
I wonder if there is a way to recognize the visit from user's iphone
I need to redirect a user to a different page if they visit a
I'm trying to add an optional mobile layout to an existing website. Under certain
I have a Django website that basically just displays a bunch of items from
I am in the process of planning for a series of websites that will
I have a website called example.com with several internal pages that are liked. I
Ok, so I'm building a website that has client profiles. A web user finds
How can I make this dynamic? So that it is usable for every 'user'
Assume browser default settings, and content is sent without expires headers. user visits website,

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.