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
Post a Comment