html - Get a contents of a label using jquery -


i want contents of label using jquery. example:

<input type="checkbox" id="checkbox1"> <label for="checkbox1">get text of label</label> 

thanks

like rory mccrossan points out, basic jquery. please note link provides: http://api.jquery.com/category/selectors/

$('[for=checkbox1]').text(); 

Comments

Popular posts from this blog

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -