Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset=utf-8>
  5. <title>SelectBoxIt demo</title>
  6. <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" />
  7. <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/themes/base/jquery-ui.css" />
  8. <link type="text/css" rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
  9. <link rel="stylesheet" href="http://gregfranko.com/jquery.selectBoxIt.js/css/jquery.selectBoxIt.css" />
  10. </head>
  11. <body>
  12.  
  13. <select id="talalbox" name="test">
  14. <option value="SelectBoxIt is:">xxx SelectBoxIt is:</option>
  15. <option value="a jQuery Plugin">a jQuery Plugin</option>
  16. <option value="a Select Box Replacement">a Select Box Replacement</option>
  17. <option value="a Stateful UI Widget">a Stateful UI Widget</option>
  18. </select>
  19.  
  20. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  21. <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
  22. <script src="http://gregfranko.com/jquery.selectBoxIt.js/js/jquery.selectBoxIt.min.js"></script>
  23. <script>
  24. $(function() {
  25.  
  26. var selectBox = $("select").selectBoxIt();
  27.  
  28. $("talalbox").Open();
  29.  
  30. });
  31. </script>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement