jquery get element by id

JavaScript
$(this).attr('id')alert($(this).attr('id'))var myId = $("#test").prop("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>$("#YourElementId").val();$( "#myDiv" )
Source

Also in JavaScript: