up vote 0 down vote favorite
share [g+] share [fb]

I have a page which has anchor tag clicking on which ma div tag toggles. I want to make whole body of page black or shaded except that Div tag.

link|improve this question
feedback

2 Answers

Well then you need to set body's background color first and then your div's background. So make function toggle which would check for presence of class in both elements and then ether add or remove class attribute (for both elements) with $('#mydiv').addClass('foo') or $('#mydiv').removeClass('foo'). Then you can use CSS to declare background colors for body and then div: add class - color in, remove class - color out

link|improve this answer
feedback

It sounds like you really want a "Modal Dialog" type of display. There are a number of JQuery and other methods to do this.

Here is a good one that I've used before, Simple Modal

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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