Advertisement
Guest User

Untitled

a guest
May 30th, 2015
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Bloki</title>
  6. <link href="reset.css" rel="stylesheet">
  7. <link href="koala/style.css" rel="stylesheet">
  8. <link href="chosen/chosen.css" rel="stylesheet">
  9. <link href="chosen/chosen.min.css" rel="stylesheet">
  10. <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
  11. <script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
  12. <script src="chosen/chosen.jquery.js"></script>
  13. <script src="chosen/chosen.jquery.min.js"></script>
  14. <script src="chosen/chosen.proto.js"></script>
  15. <script src="chosen/chosen.proto.min.js"></script>
  16. </head>
  17.  
  18. <body>
  19. <select class="chosen" data-placeholder="Choose a Country..." style="width:350px;" tabindex="1">
  20. <option value=""></option>
  21. <option value="United States">United States</option>
  22. <option value="United Kingdom">United Kingdom</option>
  23. </select>
  24. <script>
  25. $(".chosen").chosen({width: "25%"});
  26. </script>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement