jquery find by label code example
Example 1: find label jquery
$('#id').find('label[for="'+inputName+'"]')
Example 2: how to find for lable in jquery
$('input').on("focus", function() {
var labelText = $('label[for='+ this.id +']').text();
console.log( labelText );
});