Jump to content

kyleigh.wentworth

Circle Member
  • Posts

    2
  • Joined

  • Last visited

Reputation Activity

  1. Like
    kyleigh.wentworth got a reaction from creedon in Lightbox form: How to add form field placeholders?   
    @creedon Worked PERFECTLY!! And was able to get the date fields as well. THANK. YOU SO MUCH!
  2. Thanks
    kyleigh.wentworth reacted to creedon in Lightbox form: How to add form field placeholders?   
    @kyleigh.wentworth
    Give this a try.
    $( '.phone .two-digits input', $form )   .attr ( 'placeholder', '##' );    $( '.phone .three-digits input', $form )   .attr ( 'placeholder', '###' );    $( '.phone .four-digits input', $form )   .attr ( 'placeholder', '####' ); Let us know how it goes.
  3. Like
    kyleigh.wentworth reacted to creedon in Lightbox form: How to add form field placeholders?   
    Add the following to Settings > Advanced > Code Injection > HEADER.
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> Add the following to Page Settings > Advanced > Page Header Code Injection for the contact page.
    <script>   $( ( ) => {        /*            add placeholder text to first and last name fields in "Get in touch!"       form for v7.1 site.              SS version : 7.1              */            const dataFormId = '601ced4f7050527e47ff6076';     const firstNamePlaceholderText = 'first';     const lastNamePlaceholderText = 'last';          // do not change anything below, there be the borg here          let $form = $( '[data-form-id="' + dataFormId + '"]' );          $( '.first-name input', $form )            .attr ( 'placeholder', firstNamePlaceholderText );            $( '.last-name input', $form )            .attr ( 'placeholder', lastNamePlaceholderText );            } );        </script> Let us know how it goes.
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.