Advertisement
szymcio93

rrrr-mm-dd lepiej

Jun 16th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $( document ).ready(function() {
  2. $("input").keyup(function(){
  3. var date = $(this).val();
  4. var reg = /^(\d{2})[-\/](\d{2})[-\/](\d{4})$/.test(date);
  5. if (reg){
  6. $("div").text("Good Formatting!");
  7. }else
  8. {
  9. $("div").text("BAD JOB");
  10. }
  11. });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement