Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

52 rader
934 B

  1. <!DOCTYPE html>
  2. <!-- Varun Dewan 2019 -->
  3. <html lang="en" >
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>MultiSelect </title>
  7. <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Raleway'>
  8. <link rel='stylesheet' href='https://fonts.googleapis.com/icon?family=Material+Icons'>
  9. <link rel="stylesheet" href="css/style.css">
  10. </head>
  11. <body>
  12. <div class="container">
  13. <section>
  14. <h3>Multiselect Drop Down</h3>
  15. <p>An example of a drop down select plugin using vanilla JavaScript.</p>
  16. <p>By Varun Dewan</p>
  17. <p class="link"><a href="multiselect.zip">Download Project</a></p>
  18. </section>
  19. <section>
  20. <p>Preselected</p>
  21. <select multiple="multiple" id="myMulti">
  22. <option>Item 1</option>
  23. <option>item 2</option>
  24. <option>item 3</option>
  25. <option>item 4</option>
  26. </select>
  27. </section>
  28. </div>
  29. <script src="js/index.js"></script>
  30. </body>
  31. </html>