Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

up vote 2 down vote accepted

If nothing to change in CSS, then:

$("<div />").css({
    position: "absolute",
    width: "100%",
    height: "100%",
    left: 0,
    top: 0,
    zIndex: 1000000,  // to be on the safe side
    background: "url(/img/loading.gif) no-repeat 50% 50%"
}).appendTo($(".container").css("position", "relative"));

DEMO: http://jsfiddle.net/jKfTC/

share|improve this answer
Also might be a good idea to check if the .container has 'static' positioning before setting it's position... just to make your code reusable. – Ryan Wheale Dec 7 '12 at 1:48
@RyanWheale Good catch, thanks! – VisioN Dec 7 '12 at 1:54
I would recommend having all your styling defined before in your css file rather than applying it on the fly with jQuery. Like so jsfiddle.net/jKfTC/1 – 3dgoo Dec 7 '12 at 3:26
If the container has a border, the border is not covered in the solution above. – Zach Dec 7 '12 at 7:43
You could just make the loading container span 1px bigger all the way around like this: jsfiddle.net/jKfTC/3 – 3dgoo Dec 8 '12 at 9:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.