Viewing 2 replies - 1 through 2 (of 2 total)
  • I would love to see this as well.

    This might help if you want to do it with jQuery:
    https://www.gravityhelp.com/clearing-default-form-field-values-with-jquery/
    (note I haven’t actually tried this and it might not work with the gravity forms placeholder jquery)

    You can also do it with CSS in non-ancient browsers:

    /* WebKit < 19 */
    input:focus::-webkit-input-placeholder { color: transparent; }
    /* Firefox < 19 */
    input:focus:-moz-placeholder { color: transparent; }
    /* Firefox > 19 */
    input:focus::-moz-placeholder { color: transparent; }
    /* Internet Explorer 10 */
    input:focus:-ms-input-placeholder { color: transparent; }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘problem with clicking the input fields’ is closed to new replies.