← All Scripts

#49 - Disable First Option in a Select Input v0.1

Verhindern Sie, dass Benutzer die Platzhalteroption in Ihren Auswahleingaben auswählen.

Need help with this MemberScript?

Alle Memberstack-Kunden können im 2.0 Slack um Unterstützung bitten. Bitte beachten Sie, dass dies keine offiziellen Funktionen sind und der Support nicht garantiert werden kann.

View demo

<!-- 💙 MEMBERSCRIPT #49 v0.1 💙 DISABLE FIRST OPTION IN SELECT INPUT -->
<script>
    let selects = document.querySelectorAll("select[ms-code=hide-first-option]");
    selects.forEach((select) => { 
        let options = select.getElementsByTagName("option");
        options[0].hidden = true;
    });
</script>
Beschreibung
Attribut
Disable First Select Option
Verhindern Sie, dass Benutzer die Platzhalteroption in Ihren Auswahleingaben auswählen.
ms-code
hide-first-option
hide-first-option

Creating the Make.com Scenario

1. Download the JSON blueprint below to get stated.

2. Navigate to Make.com and Create a New Scenario...

3. Click the small box with 3 dots and then Import Blueprint...

4. Upload your file and voila! You're ready to link your own accounts.