v0.1

Custom Fields
#99 - Custom File Inputs
Turn anything into a file input!
Prevent users from selecting the placeholder option in your select inputs.
Watch the video for step-by-step implementation instructions
<!-- 💙 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>trueAdd these data attributes to your HTML elements in Webflow. For example: <div data-attribute="value">
More scripts in Custom Fields