up vote 132 down vote favorite
96
share [g+] share [fb]

How do I go about setting a <div> in the center of the screen using jQuery?

link|improve this question

51% accept rate
5  
This is more of a CSS question than a jQuery question. You can use jQuery methods to help you find the cross-browser positioning and to apply the proper CSS styles to an element, but the essence of the question is how to center a div on the screen using CSS. – Chris MacDonald Oct 17 '08 at 0:20
1  
I have made a jQuery pluglin for this :) plugins.jquery.com/project/autocenter This is good for dynamic content, or to control that your element won't hide when window is small (keep left and top > 0) Otherwise css work find... – molokoloco Apr 16 '10 at 0:35
Here is one more plugin. alexandremagno.net/jquery/plugins/center – Ivailo Bardarov Feb 1 '11 at 18:27
If you are centering a div on the screen, you may be using FIXED positioning. Why not just do this: stackoverflow.com/questions/2005954/…. The solution is pure CSS, doesn't require javascript. – azure_ardee Apr 14 '11 at 2:00
feedback

protected by Community Jul 21 '11 at 7:32

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

12 Answers

up vote 252 down vote accepted

I like adding functions to jQuery so this function would help:

jQuery.fn.center = function () {
    this.css("position","absolute");
    this.css("top", (($(window).height() - this.outerHeight()) / 2) + $(window).scrollTop() + "px");
    this.css("left", (($(window).width() - this.outerWidth()) / 2) + $(window).scrollLeft() + "px");
    return this;
}

Now we can just write:

$(element).center();
link|improve this answer
3  
I can't edit but note the missing dot on line 4; change "2+$(window)scrollTop()" to "2+$(window).scrollTop()" – eddiegroves Jan 27 '09 at 3:27
thanx!! it works for me... – Shruti Nov 30 '09 at 12:40
31  
One change I'd suggest: You should use this.outerHeight() and this.outerWidth() instead of just this.height() and this.width(). Otherwise, if the object has a border or padding, it will end up slightly off-center. – Trevor Burnham Jan 25 '10 at 20:52
1  
To expand on @Mark Milford's answer, youtu.be/9hwE0slNd3Y - we'll be using this for the popup dialogs :) – Jarrod Dixon Dec 15 '10 at 0:24
11  
Why isn't this a native part of jQuery's functionality? – Seth Carnegie Jul 6 '11 at 21:54
show 5 more comments
feedback

I put a jquery plugin here http://plugins.jquery.com/project/autocenter

VERY SHORT VERSION

$('#myDiv').css({top:'50%',left:'50%',margin:'-'+($('#myDiv').height() / 2)+'px 0 0 -'+($('#myDiv').width() / 2)+'px'});

SHORT VERSION

(function($){
    $.fn.extend({
        center: function () {
            return this.each(function() {
                var top = ($(window).height() - $(this).outerHeight()) / 2;
                var left = ($(window).width() - $(this).outerWidth()) / 2;
                $(this).css({position:'absolute', margin:0, top: (top > 0 ? top : 0)+'px', left: (left > 0 ? left : 0)+'px'});
            });
        }
    }); 
})(jQuery);

Activated by this code :

$('#mainDiv').center();

PLUGIN VERSION

(function($){
     $.fn.extend({
          center: function (options) {
               var options =  $.extend({ // Default values
                    inside:window, // element, center into window
                    transition: 0, // millisecond, transition time
                    minX:0, // pixel, minimum left element value
                    minY:0, // pixel, minimum top element value
                    withScrolling:true, // booleen, take care of the scrollbar (scrollTop)
                    vertical:true, // booleen, center vertical
                    horizontal:true // booleen, center horizontal
               }, options);
               return this.each(function() {
                    var props = {position:'absolute'};
                    if (options.vertical) {
                         var top = ($(options.inside).height() - $(this).outerHeight()) / 2;
                         if (options.withScrolling) top += $(options.inside).scrollTop() || 0;
                         top = (top > options.minY ? top : options.minY);
                         $.extend(props, {top: top+'px'});
                    }
                    if (options.horizontal) {
                          var left = ($(options.inside).width() - $(this).outerWidth()) / 2;
                          if (options.withScrolling) left += $(options.inside).scrollLeft() || 0;
                          left = (left > options.minX ? left : options.minX);
                          $.extend(props, {left: left+'px'});
                    }
                    if (options.transition > 0) $(this).animate(props, options.transition);
                    else $(this).css(props);
                    return $(this);
               });
          }
     });
})(jQuery);

Activated by this code :

$(document).ready(function(){
    $('#mainDiv').center();
    $(window).bind('resize', function() {
        $('#mainDiv').center({transition:300});
    });
);

is that right ?

link|improve this answer
I have seen a nice function to put a timeout between two resize event... "Smartresize: debounced resize event for jQuery" github.com/lrbabe/jquery-smartresize ;) – molokoloco Dec 15 '10 at 17:27
feedback

I would recommend jQueryUI Position utility

$('your-selector').position({
    of: $(window)
});

which gives you much more possibilities than only centering ...

link|improve this answer
good find!..... – JCasso Dec 23 '11 at 3:20
feedback

Vertically

link|improve this answer
Took a bit of experimentation to get it working, but this is good. – Marcus Downing Dec 4 '09 at 16:45
feedback

I would like to correct one issue.

this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");

Above code won't work in cases when this.height (lets assume that user resizes the screen and content is dynamic) and scrollTop() = 0, example:

window.height is 600
this.height is 650

600 - 650 = -50
-50 / 2 = -25

Now the box is centered -25 offscreen.

link|improve this answer
feedback

I dont think having an absolute position would be best if you want an element always centered in the middle of the page. You probably want a fixed element. I found another jquery centering plugin that used fixed positioning. It is called fixed center.

link|improve this answer
Looks good, I will check it out. – Craig Jul 3 '10 at 11:10
This is good. I've implemented it on one of my blogs and seems to be working well. – Ciaran Aug 8 '10 at 14:53
feedback

The transition component of this function worked really poorly for me in Chrome (didn't test elsewhere). I would resize the window a bunch and my element would sort of scoot around slowly, trying to catch up.

So the following function comments that part out. In addition, I added parameters for passing in optional x & y booleans, if you want to center vertically but not horizontally, for example:

// Center an element on the screen
(function($){
  $.fn.extend({
    center: function (x,y) {
      // var options =  $.extend({transition:300, minX:0, minY:0}, options);
      return this.each(function() {
                if (x == undefined) {
                    x = true;
                }
                if (y == undefined) {
                    y = true;
                }
                var $this = $(this);
                var $window = $(window);
                $this.css({
                    position: "absolute",
                });
                if (x) {
                    var left = ($window.width() - $this.outerWidth())/2+$window.scrollLeft();
                    $this.css('left',left)
                }
                if (!y == false) {
            var top = ($window.height() - $this.outerHeight())/2+$window.scrollTop();   
                    $this.css('top',top);
                }
        // $(this).animate({
        //   top: (top > options.minY ? top : options.minY)+'px',
        //   left: (left > options.minX ? left : options.minX)+'px'
        // }, options.transition);
        return $(this);
      });
    }
  });
})(jQuery);
link|improve this answer
feedback

This is great. I added a callback function

...
center: function (options, callback) {
...
...
if (options.transition > 0) {
   $(this).animate(props, options.transition, callback);
} else { 
    $(this).css(props);
   if (typeof callback == 'function') { // make sure the callback is a function
       callback.call(this); // brings the scope to the callback
   }
}
...
link|improve this answer
feedback

Here's my go at it. I ended up using it for my Lightbox clone. The main advantage of this solution is that the element will stay centered automatically even if the window is resized making it ideal for this sort of usage.

$.fn.center = function() {
    this.css({
        'position': 'fixed',
        'left': '50%',
        'top': '50%',
    });
    this.css({
        'margin-left': -this.width() / 2 + 'px',
        'margin-top': -this.height() / 2 + 'px'
    });

    return this;
}
link|improve this answer
feedback

This is untested, but something like this should work.

var myElement = $('#myElement');
myElement.css({
    position: 'absolute',
    left: '50%',
    'margin-left': 0 - (myElement.width() / 2)
});
link|improve this answer
feedback

you're getting that poor transition because you're adjusting the position of the element every time the document is scrolled. What you want is to use fixed positioning. I tried that fixed center plugin listed above and that seems to do solve the problem nicely. Fixed positioning allows you to center an element once, and the CSS property will take care of maintaining that position for you every time you scroll.

link|improve this answer
feedback

Why you don't use CSS for centering a div?

#timer_wrap{  
  position: fixed;
  left: 50%;
  top: 50%;
} 
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.