Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
22
rated 0 times [  24] [ 2]  / answers: 1 / hits: 44185  / 13 Years ago, fri, march 4, 2011, 12:00:00

Okay, so I had a situation where I needed to add some cloned DOM elements to a parent DIV element in a web page.



I had four of these parent DIV holders. When I make their visibility switch from visible to hidden, a really weird things happens: ALL of the post page-load added children REMAIN visible!



Here is a link to download the source code:
http://www.clarencebowman.com/parent-child-visibility/parent-child-visibility.zip



and here is a link to view the phenomenon first-hand:
http://www.clarencebowman.com/parent-child-visibility



What you will see is a red box with some magenta child elements added to it, post page-load. There is a show/hide button at the bottom of the page.



I added a green stripe in the parent DIV to show that its child elements do indeed inherit its visibility properly.



But after you add the cloned child elements and then hide the parent DIV, NONE of the cloned child elements disappears!



I have already tried placing the child to be cloned inside the parent DIV before running the duplicating script... it makes no difference.



Any child elements that are added post page-load seem to have somehow lost their inheritance link with the parent DIV element (the red box).....



Anyone else experience this? Is there a simple way to repair/replace/re-assign the children's inheritance?



I am using jQuery 1.5.


More From » jquery

 Answers
24

You're not using display: none on the parent (which would affect the children), you're using visibility: hidden on the parent, and within the children have a visibility: visible css attribute. If you want the children to hide, either set them to be visibility: hidden too, or use display: none on the parent element.


So, as Kyle pointed out, you can use $('#parent_div').toggle();, which will easily apply a display: none to #parent_div.


I'll just add that visibility and display are not the same. For example, if an element is width: 10px, height: 10px, visibility retains the element's dimensional space (it still takes up width: 10px, height: 10px), whereas display: none completely removes the dimensions of the element from the parent element (width: 0, height: 0). Visibility means it's still represented visually on flow in relation to other affected elements, it's just not seen; display means it's not seen nor represented on the screen in relation to other displayed/visible elements.


[#93449] Thursday, March 3, 2011, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cameron

Total Points: 591
Total Questions: 112
Total Answers: 88

Location: Botswana
Member since Sat, Jan 7, 2023
1 Year ago
;