Answers for "put id on button the get in it on jquery"

2

get the id of a div in jquery

var rid = $(this).attr('id');	//for dynamically created elements
Posted by: Guest on June-26-2020
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language