Skip to content

Instantly share code, notes, and snippets.

@disalvo
Created April 29, 2016 11:56
Show Gist options
  • Save disalvo/0968e63a361cc8d0a0bc88416dce3d7c to your computer and use it in GitHub Desktop.
Save disalvo/0968e63a361cc8d0a0bc88416dce3d7c to your computer and use it in GitHub Desktop.
jQuery.each($('input, select'), function() {
if($(this).prop('required')) {
$('label[for="'+$(this).attr('id')+'"]').after('<span style="color:red">*</span>');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment