jquery this attr id value code example
Example 1: jquery get id value
var myId = $(this).attr('id');
alert( myId );
Example 2: jquery add attribute
$('#someid').attr('name', 'value');
var myId = $(this).attr('id');
alert( myId );
$('#someid').attr('name', 'value');