Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <head>
  2. <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  3. <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  4. <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"/>
  5. <script>
  6. $( function() {
  7. $( "#datepicker" ).datepicker();
  8. } );
  9. </script>
  10. </head>
  11.  
  12.  
  13. <input id="inaltime"></a>
  14. <input type="button" onclick="check()" value="click" />
  15. <p>Date: <input type="text" id="datepicker"></p>
  16. <script>
  17. function check() {
  18. if (isNaN(document.getElementById("inaltime").value))
  19. console.log("introdu inatlime");
  20. else
  21. console.log("BAAA E BINE");
  22. }
  23.  
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement