Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //avem nevoie de ...
  2. var windowWidth   = $(window).width();
  3. var windowHeight  = $(window).height();
  4.  
  5. var faceboxHeight = $("#facebox").height();
  6. var faceboxWidth  = $("#facebox").width();
  7.  
  8. //centrarea elementului
  9. $("#facebox").css({
  10.     "position": "absolute",
  11.     "top":  parseInt(windowHeight/2) - parseInt(faceboxHeight/2),
  12.     "left": parseInt(windowWidth/2)  - parseInt(faceboxWidth/2)
  13. });