Home > Screen-Util

Screen-Util

Screen-Util is a project mainly written in JavaScript, it's free.

Javascript Screen Utilities

Screenutil.js

is a simple javascript "object" or "class" that can be used to get the center position of your screen, it was originally created to help in displaying modal windows and making sure they are always on the middle of the page.

(function(d, c){
    d.style.left = c.x - ( d.style.width / 2 );
    d.style.top = c.y - ( d.style.height / 2 );
}( document.getElementById('test'), screenutil.getScreenCenter() ));
Previous:infix