-
-
Save nocodesupplyco/3a15d79380a8145c24cf81ba4da6acd5 to your computer and use it in GitHub Desktop.
Custom Webflow Multi-select Input
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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