I have a 'container' DIV which may have all possible CSS styles like: margin, padding, border and different position (fixed, relative, absolute).
I want to show a loading icon above the 'container' DIV and forbid the user to operate any control in the 'container' DIV.
<div class="container">
A lot of content here ...
</div>
How can I add an overlay DIV (using JQuery) which covers the entire 'container' DIV visible area (margin area should not be covered)?
Best regards, Zach