I am developing a web page in JSP/HTML in which I have to disable/ \'gray screen\' an entire web page on a button click event so that an end user can\'t access the other ele
The basic technique for this is to add a 100% width and height div on top of everything.
$('body').append('').css({ position: 'absolute', height: '100%', width: '100%', zIndex: '999' });
Then make your modal window z-index: 1000.
z-index: 1000