Hi Jason,
Your link isn't working but what you are describing sounds like the placeholder attribute which was introduced in html5, it disappears when the user starts typing in the field, it's not available out of the box in gravity forms yet, but it can be accomplished by either using a plugin
http://wordpress.org/extend/plugins/gravity-forms-placeholders/
http://wordpress.org/extend/plugins/gravity-forms-auto-placeholders/
or if you only have a few fields a bit of jQuery would accomplish it as well, the following example would add the placeholder Name to field 1 of form 5
<script>
$(document).ready(function(){
$('#input_5_1').attr('placeholder','Name');
});
</script>
Posted 11 years ago on Monday April 8, 2013 |
Permalink