Skip to content

Instantly share code, notes, and snippets.

@nocodesupplyco
Created December 18, 2022 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nocodesupplyco/3a15d79380a8145c24cf81ba4da6acd5 to your computer and use it in GitHub Desktop.
Save nocodesupplyco/3a15d79380a8145c24cf81ba4da6acd5 to your computer and use it in GitHub Desktop.
Custom Webflow Multi-select Input
<!-- Place this in the <head> -->
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
<!-- Place this in the before </body> -->
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<script>
$(function() {
$('.input-select').select2();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment