Right now I’m setting the position of the modal jQuery window in this way:
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
$(id).css('top', winH/2-$(id).height()/2);
$(id).css('left', winW/2-$(id).width()/2);
How do I center the popUp when I scroll down?
You could just use another CSS style, try
position: fixed