patric-boehner
5/21/2013 - 2:55 AM

GravityForms doesn't have a filter for the * required marker, so this JS changes it.

GravityForms doesn't have a filter for the * required marker, so this JS changes it.

jQuery(document).ready(function($) {
	$("span.gfield_required").html(function(index, text) {
		return text.replace("*", "Required");
	});			
});