getting id value code example
Example 1: jquery get id value
var myId = $(this).attr('id');
alert( myId );
Example 2: get value of input jqueyr
var str = $("#myInput"). val();
var myId = $(this).attr('id');
alert( myId );
var str = $("#myInput"). val();