jquery get value from id code example
Example 1: jquery get id value
var myId = $(this).attr('id');
alert( myId );
Example 2: jquery value of input
$("#textInput").val() // To get value of element textInput
Example 3: get value of input jqueyr
var str = $("#myInput"). val();
Example 4: get id value jquery
$(document).ready(function(){
$("button").click(function(){
var myid = $( "#old" ).html()
$("#some").html(myid);
});
});