show element based on matching id jquery code example
Example 1: get id by this jquery
alert($(this).attr('id'))
Example 2: get element by id in Jquery
$("#YourElementId").val();
alert($(this).attr('id'))
$("#YourElementId").val();