Dropdown "blank" option

  • flowerpower
    Asked on March 16, 2017 at 2:26 AM

    I have a dropdown with 2 options but when somebody clicks there is an blank option above the first actual option.

    How do I solve that?

  • Chriistian Jotform Support
    Replied on March 16, 2017 at 4:20 AM

    Currently, it is not possible to remove the blank option in a dropdown list. If you want to remove this, you will need to get the Full Source Code of your form and embed that code on a web page.

    Guide: How to get the Full Source Code of your Form

    After this, you can now disable the blank option by modifying your form's source code:

     

    <select>

            <option value="">  </option>

            <option value="" value="για τις 23 Απριλίου στην Αθήνα"> για τις 23 Απριλίου στην Αθήνα </option>

            <option value="για ένα από τα επόμενα workshops"> για ένα από τα επόμενα workshops </option>

    </select>

     

    Let us know if you need further assistance.
    Regards.