Answers for "jquery find div by id"

2

jquery get element by id

<script>
$(document).ready(function(){
    $("#myBtn").click(function(){
        var elmId = $("#test").attr("id");
        alert(elmId);
    });
});
</script>

<body>
    <div id="testDiv">Data of the Div</div>
    <br>
    <button type="button" id="myBtn">Show Div ID</button>
</body>
Posted by: Guest on April-14-2020
6

jquery find

$( "li.item-ii" ).find( "li" ).css( "background-color", "red" );
Posted by: Guest on February-20-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
0

how to target an element inside of a $(this) jquery

$( this ).find( 'li.target' ).css("border", "3px double red");
Posted by: Guest on October-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language