Profile image for Elie Andraos elieandraos
Append Site Overlay DIV
Language
JavaScript
Tags
Javascript jQuery
Favorited By
Profile image for Marcus Stephens Profile image for Aari B Profile image for Kamalpreet Chauhan Profile image for Björn Andersson

Append Site Overlay DIV

1 $(function() { 2 3 var docHeight = $(document).height(); 4 5 $("body").append("<div id='overlay'></div>"); 6 7 $("#overlay") 8 .height(docHeight) 9 .css({ 10 'opacity' : 0.4, 11 'position': 'absolute', 12 'top': 0, 13 'left': 0, 14 'background-color': 'black', 15 'width': '100%', 16 'z-index': 5000 17 }); 18 19 });

Comments