get id of the script jquery code example
Example 1: get the id of a div in jquery
var rid = $(this).attr('id'); //for dynamically created elements
Example 2: get id value jquery
$(document).ready(function(){
$("button").click(function(){
var myid = $( "#old" ).html()
$("#some").html(myid);
});
});