Most voted "child" questions
6 questions
Sort by count of
-
2
votes1
answer20
viewsTarget an <ul>l element with class="menus" excluding the others, only one at a time
jQuery(document).ready(function() { $('.heading-list').bind('click',function(){ $('.list').children().css({ 'display': 'block' }); }) $('.heading-list').bind('dblclick',function(){…
-
1
votes1
answer37
viewsChildren of a selector: one with margin left and one with right
Next, I always had this doubt have this html structure <!-- wrap1 --> <div class="wrap"> <div class="filho"> (...) </div> </div> <!-- wrap2 --> <div…
-
0
votes1
answer307
viewsOnly open prompt if you click the parent element and not the child element
I have a div and inside it has several other elements (img, span, etc.). What I need to do is only when I click on div father the prompt open javascript, if click another element (child, those…
-
0
votes2
answers601
viewsFirebase - Child inside another Child
I wonder how I can put a Child inside another Child in the firebase, for example, create a Child that calls "Company" and inside that Child put other Childs with each headquarters inside, I do not…
-
0
votes1
answer35
viewsshow the value of the child inputs of Divs js
I need the for/while to show on the screen the string placed in the input of the first div the first time the loop is executed and the second time to show on the screen the string placed in the…
-
0
votes1
answer41
viewsWPF - Trigger elements within a wrap panel
I have a wrap panel that contains several dockpanels, and I need each dockpanel to change its background by hovering over it. I don’t think creating a Rigger for every element would be appropriate.…