how to select an id in jquery code example
Example 1: jquery get element id
$(this).attr('id')
Example 2: jquery get id
var myId = $("#test").prop("id");
Example 3: 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>
Example 4: get element by id in Jquery
$("#YourElementId").val();
Example 5: get element by id jqueryt
$( "#myDiv" )
Example 6: name class and id referance in ajax
$('td[name ="tcol1"]')
$('td[name^="tcol"]' )
$('td[name$="tcol"]' )
$('td[name*="tcol"]' )