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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:48:00+00:00 2026-05-20T08:48:00+00:00

I am using this following code to position the dialog to the center of

  • 0

I am using this following code to position the dialog to the center of the window.

var dialog = $('#dialogBox');
var windowHeight = $(window).height();
var windowWidth = $(window).width();
var dHeight = $('#dialogBox').height();
var dWidth = $('#dialogBox').width();
$('#dialogBox').css({top:windowHeight/2 - dHeight/2, left:windowWidth/2 - dWidth/2}).show();

It positions the div to the center of the window. But i wants to position the dialog to the center of current visible area. So the dialog will be positioned center of the window even if i scroll down or scroll up. How to do it with jquery?

Any suggestions would be appreciative!!!

Thanks.

  • 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-20T08:48:00+00:00Added an answer on May 20, 2026 at 8:48 am

    You can make it dead-centered like this:

    $('#elementID').css({
      position:'absolute',
      top:'50%',
      left:'50%',
      width:'600px',                 // adjust width
      height:'300px',                // adjust height
      zIndex:1000,
      marginTop:'-150px'             // half of height
      marginLeft:'-300px'            // half of width
    });
    

    Note that element will appear at the center but with scrolling it won’t move. If you want to make it appear at center, you need to set position to fixed instead. However, this won’t work in IE6. So decision is yours 🙂


    You can also create quick simple jQuery plugin:

    (function($){
        $.fn.centerIt = function(settings){
    
            var opts = $.extend({}, $.fn.centerIt.defaults, settings);
    
            return this.each(function(settings){
              var options = $.extend({}, opts, $(this).data());
              var $this = $(this);
    
              $this.css({
                position:options.position,
                top:'50%',
                left:'50%',
                width:options.width,                 // adjust width
                height:options.height,               // adjust height
                zIndex:1000,
                marginTop:parseInt((options.height / 2), 10) + 'px'  // half of height
                marginLeft:parseInt((options.width / 2), 10) + 'px'  // half of height
              });
    
            });
        }
    
        // plugin defaults - added as a property on our plugin function
        $.fn.centerIt.defaults = {
          width: '600px',
          height: '600px',
          position:'absolute'
        }
    
    })(jQuery);
    

    And later use it like:

    $('#elementId').centerIt({width:'400px', height:'200px'});
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using the following code to create a Dialog box using JQUERY/UI: var $dialog2
To use custom layout file in my app I'm using this following code, set
I have the following code snippet: using (SPSite site = new SPSite(this.ListAddress)) { using
i am using the following code(based on this http://goo.gl/5HhSx ) to calculate the difference
I am using following code to show a spinning wheel: $(#loading) .hide() .ajaxStart(function(){ $(this).show();
I am using following code to get bitmap from url. This function is used
I'm using following code but cannot return data from MySQL. This is the output:
I am using the following code to generate excel from sql through php.this is
I am using 'git' to checkout chromium code by following this document: http://code.google.com/p/chromium/wiki/UsingGit And
I am using Jersey v10 and have written the following code.Is this the right

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.