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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T01:25:09+00:00 2026-05-16T01:25:09+00:00

When the user clicks the "Maximized"/"Restore" or "Minimized" buttons of the browser window, is

  • 0

When the user clicks the "Maximized"/"Restore" or "Minimized" buttons of the browser window, is there a way to keep track of these events with JavaScript? Are there any appropriate event or property to use?

I want that when the user clicks the "Maximized" button at the top-right of the window, the webpage should stretch to a specific width and when the browser is in the resizable mode, the webpage is resizable.

Please can someone help me in this? I don’t mind either JavaScript or jQuery.

Thanks in advance.

  • 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-05-16T01:25:10+00:00Added an answer on May 16, 2026 at 1:25 am

    It sounds like what you want is a layout that resizes when the browser is resized but only up to a maximum width.

    If that’s the case you can either do it in CSS or in JavaScript.

    Imagining that your content is in an element like:

    <div class="container"> -content here- </div>
    

    My preferred option would be to use CSS as follows:

    .container{
        max-width: 1200px;
        width: 100%;
    }
    

    If you need to support IE6 (which doesn’t support max-width) you can try using an expression in the IE6 CSS:

    .container{
        width:expression(document.body.clientWidth > 1200 ? "1200px" : "100%" ); /*IE6*/
    }
    

    If you want to use JavaScript: you could just resize your elements in the window’s resize event:

    $(window).bind('resize', function() {
        // resize $('.container').width() based on $(window).width()
    });
    

    You could initially trigger that logic using

    $(window).trigger('resize');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When user clicks hyperlink on my ASP.NET page, I want a new browser to
Simply put, when a user clicks a javascripted text such as "480p", I want
I am displaying a warning dialog box on window close event. If user clicks
Is there any way to detect if a user has selected ok or cancel
Goal When the user clicks an element (with class="menu" ), the default action should
Protected Sub lnkContractors_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles lnkContractors.Click If Context.User.IsInRole("HOD")
When user clicks on select box , I want to hide the options menu
When the user clicks on a button, a new ListFragment is displayed. This fragment
If a user clicks the blank row at the bottom of a DataGridView and
When the user clicks add more options, a from is created with javascript document.getElementById('addmore').innerHTML

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.