Skip to content

Instantly share code, notes, and snippets.

@vurral
Created August 28, 2013 15:06
Show Gist options
  • Save vurral/6367106 to your computer and use it in GitHub Desktop.
Save vurral/6367106 to your computer and use it in GitHub Desktop.
$("div.check_boxes label").each(function() {
attrId = $(this).find(">:first-child").attr("id");
$(this).attr("for", attrId);
});
$("div.radio_buttons label").each(function() {
attrId = $(this).find(">:first-child").attr("id");
$(this).attr("for", attrId);
});
$("label").each(function() {
attrId = $(this).find(">:first-child").attr("id");
$(this).attr("for", attrId);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment