$(function () { $("#productpic").click(function(){ $("body").append(""); $(".blockUI").show(); $(".blockPage").css({ backgroundColor: '#fff', borderWidth:'3px', position: 'fixed', top: ($(window).height() - $("#pre")[0].offsetHeight) /2 + 'px', left: ($(window).width() - $("#pre")[0].offsetWidth/2) /2 + 'px', borderColor:'#fff' }); $("#pre").remove(); }); $(".closeit").click(function(){ $(".blockUI").hide(); }); });