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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:04:46+00:00 2026-06-15T15:04:46+00:00

I need to include a file always that the screen browser would be greater

  • 0

I need to include a file always that the screen browser would be greater or equal than 699px, for this I’m trying to use the following script:

<script type="text/javascript">
<!--
if (screen.width >= 699) {
document.write (" <!--#include virtual="/menu.asp"-->");
}
//-->
</script>

But nothing it does. Does anyone know how to get it work?

Best regards.

  • 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-15T15:04:47+00:00Added an answer on June 15, 2026 at 3:04 pm

    The include directive needs to be a part of the page before it gets to the web browser, and since the JavaScript executes in the web browser, it’s already too late for that. You might consider putting the include in the page, but hiding it in a div with style="display:none;", and then removing that using JavaScript when the page loads:

    <script type="text/javascript">
    window.addEventListener('load', function(){
        if (screen.width >= 699)
            document.getElementById('myHiddenElement').style.display = null;
    });
    </script>
    

    Alternatively, you could use the same strategy with CSS Media Queries.

    Edit: Example:

    <style type="text/css">
    #myHiddenElement {
        display: none;
    }
    @media screen and (min-width: 699px) {
        #myHiddenElement {
            display: block;
        }
    }
    </style>
    

    This will give you better performance, and it will automatically hide and show the content as the user resizes their browser window.

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

Sidebar

Related Questions

I need some help trying to match a C include file with full path
when you need to use a function you include a header file but wheres
I need to include a html file inside a php file, I tried using
We include the CSS file via standard HTML STYLE tag. Then we need the
Should I #include everything I need in every header/cpp file? I am working on
I'm creating something that includes a file upload service of sorts, and I need
I have to use a header file after the program is compiled. This header
What I am trying to do is to have an include file with generalized
I need to echo entire content of included file. I have tried the below:
I need to include some kind of notifications in a sidebar gadget, preferably systray

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.