Skip to content

Instantly share code, notes, and snippets.

@DenisLeblanc
Created June 19, 2014 21:07
Show Gist options
  • Save DenisLeblanc/2bdca22e3e4aa9e5cdf0 to your computer and use it in GitHub Desktop.
Save DenisLeblanc/2bdca22e3e4aa9e5cdf0 to your computer and use it in GitHub Desktop.
Placeholder Text in GravityForm Fields
// USE PLACEHOLDER TEXT IN FORM FIELDS
var inner_form_labels = function() {
$('.gform_fields input').each(function() {
var el = $(this);
var placeholder = el.val();
el.attr({
value : null,
title : placeholder,
placeholder : placeholder
});
});
$('.gform_fields textarea').each(function() {
var el = $(this);
var placeholder = el.val();
el.val(null);
el.attr({
title : placeholder,
placeholder : placeholder
});
});
}; inner_form_labels();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment