Advertisement
Guest User

Untitled

a guest
May 24th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>jQuery UI Draggable - Default functionality</title>
  6. <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  7. <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  8. <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
  9. <link rel="stylesheet" href="/resources/demos/style.css">
  10. <style>
  11. #draggable { width: 50px; height: 50px; padding: 0.5em; }
  12. #draggable1 { width: 50px; height: 50px; padding: 0.5em; }
  13. </style>
  14. <script>
  15. $(function() {
  16. $( "#draggable" ).draggable();
  17. });
  18.  
  19. $(function() {
  20. $( "#draggable1" ).draggable();
  21. });
  22.  
  23. </script>
  24. </head>
  25. <body>
  26.  
  27. <div id="draggable" class="ui-widget-content">
  28. <p>Drag me</p>
  29. </div>
  30.  
  31. <div id="draggable1" class="ui-widget-content">
  32. <p>Drag me</p>
  33. </div>
  34.  
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement