Tutorial Append Site Overlay DIV
$(function() { var docHeight = $(document).height(); $("body").append(" "); $("#overlay") .heig...
https://iskablogs.blogspot.com/2014/03/tutorial-append-site-overlay-div.html
$(function() {
var docHeight = $(document).height();
$("body").append("");
$("#overlay")
.height(docHeight)
.css({
'opacity' : 0.4,
'position': 'absolute',
'top': 0,
'left': 0,
'background-color': 'black',
'width': '100%',
'z-index': 5000
});
});
Overlays entire
var docHeight = $(document).height();
$("body").append("");
$("#overlay")
.height(docHeight)
.css({
'opacity' : 0.4,
'position': 'absolute',
'top': 0,
'left': 0,
'background-color': 'black',
'width': '100%',
'z-index': 5000
});
});
Overlays entire