how to get the value of id in jquery code example
Example 1: jquery get element id
$(this).attr('id')
Example 2: jquery get id
var myId = $("#test").prop("id");
Example 3: change inptu val
//one of these 2 should suffice
$('#id').attr('value', 'xxx')
$('#id').val('xxx');