Site-overlay DIV - toevoegen CSS-trucs

Anonim
$(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 )); ));

Overlapt de hele site met een zwarte tint, waardoor alle links worden uitgeschakeld en alles erboven in beeld wordt gebracht.