Last active
July 18, 2021 14:58
-
-
Save HilmiZul/3b0a1abc8aa351c00e1f122e9e418109 to your computer and use it in GitHub Desktop.
input select with select2: https://select2.org/
This file contains hidden or 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
| <!-- hilmizul / 18 Juli 2021 --> | |
| <html> | |
| <head> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css" rel="stylesheet" /> | |
| </head> | |
| <body> | |
| <select class="select"> | |
| <option>--Pilih Nama--</option> | |
| <option>Yeri</option> | |
| <option>Wendy</option> | |
| <option>Irene</option> | |
| </select> | |
| <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/select2.min.js"></script> | |
| <script> | |
| $(document).ready(function () { | |
| $('.select').select2(); | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment