Last active
May 18, 2016 03:05
-
-
Save jaredatch/5617223 to your computer and use it in GitHub Desktop.
GravityForms doesn't have a filter for the * required marker, so this JS changes it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($) { | |
$("span.gfield_required").html(function(index, text) { | |
return text.replace("*", "Required"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment