cergey-obr
5/17/2016 - 5:02 AM

center

center

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

jQuery(".modal-profile").center();