get id jqueery code example
Example 1: jquery get element id
$(this).attr('id')
Example 2: get id value jquery
$(document).ready(function(){
$("button").click(function(){
var myid = $( "#old" ).html()
$("#some").html(myid);
});
});
$(this).attr('id')
$(document).ready(function(){
$("button").click(function(){
var myid = $( "#old" ).html()
$("#some").html(myid);
});
});