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