Answers for "jquery find specific child"

10

jquery get child div

$(this).children('div').show();
Posted by: Guest on April-15-2020
1

jquery specific child by index

<div class="second">
    <div class="selector" id="selFirst">Number One</div>
    <div class="selector" id="selSecond">Number Two</div>
    <div></div>
</div> 
<script>
	var index = 0
 	console.log($('.second').children().eq(index).text());
 	//Number One
</script>
Posted by: Guest on November-17-2020
5

jquery find tag and class

$(".txtClass")                  =>  getElementsByClassName()

$("#childDiv2 .txtClass")       =>  getElementById(),
                                    then getElementsByClassName()

$("#childDiv2 > .txtClass")     =>  getElementById(),
                                    then iterate over children and check class

$("input.txtClass")             =>  getElementsByTagName(),
                                    then iterate over results and check class

$("#childDiv2 input.txtClass")  =>  getElementById(),
                                    then getElementsByTagName(),
                                    then iterate over results and check class
Posted by: Guest on August-15-2020

Code answers related to "jquery find specific child"

Browse Popular Code Answers by Language