$(this).attr('id')
var myId = $(this).attr('id');
alert( myId );
var rid = $(this).attr('id'); //for dynamically created elements
alert($(this).attr('id'))
var myId = $("#test").prop("id");
$(document).ready(function(){
$("button").click(function(){
var myid = $( "#old" ).html()
$("#some").html(myid);
});
});