jquery find label with text code example
Example 1: find label jquery
$('#id').find('label[for="'+inputName+'"]')
Example 2: jquery find by innertext
$( "div:contains('innerText')" );
Example 3: jquery label with text
var element = $("label:contains('SuperSweetCheckbox')");