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

Possible Duplicate: UIImage position I'm using the following code to place some images in
I'm trying to draw the following image: Using this objective-c code: CGContextSetFillColorWithColor(ctx, [[UIColor redColor]
I am currently using the following code to do it. <span style=position: absolute; bottom:
I'm using Thinking Sphinx for full-text search, following this video . I'd like to
I have the following line: 14:48 say;0ed673079715c343281355c2a1fde843;2;laka;hello ;) I parse this by using a
I get this message: Cannot find the X.509 certificate using the following search criteria:
Following the advice of wcoenen, I've decided to try using registration-free COM. This works
I'm using this code, to make a request to a given URL: private static
Should I be using this method of throwing errors: if (isset($this->dbfields[$var])) { return $this->dbfields[$var];
i am using following code to display list of tags now when i select

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.