Advertisement
eyuprog

Jquery with animation

Dec 20th, 2013
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 KB | None | 0 0
  1. //JQuery datepicker with animation
  2. //Heru Rahmat Akhnuari
  3. // http://www.ilmuprogrammer.com
  4. <!doctype html>
  5. <html lang="en">
  6. <head>
  7. <meta charset="utf-8">
  8. <title>jQuery UI Datepicker - Default functionality</title>
  9. <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
  10. <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  11. <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  12. <link rel="stylesheet" href="/resources/demos/style.css">
  13. <script>
  14. $(function() {
  15. $("#datepicker").datepicker({        
  16.   dateFormat: "yy-mm-dd",
  17.   showAnim:"slide", //You can change any effect show,slideDown,fadeIn,blind,bounce,clip,drop,fold,slide
  18. });
  19. });
  20. </script>
  21. </head>
  22. <body>
  23. <p>Date: <input type="text" id="datepicker"></p>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement