Advertisement
szymcio93

aaa

Jun 16th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. \d{4}([0248][048])|([13579][26])$
  2. <script type="text/javascript">
  3. $( document ).ready(function() {
  4. $("*").click(function(){
  5. $(this).css( "border", "3px solid rgb(255, 17, 17)" );
  6.  
  7. });
  8. });
  9. </script>
  10.  
  11. /vaklidacja
  12. ( document ).ready(function() {
  13. $("input").keyup(function(){
  14. var bank = $(this).val();
  15. var reg = /^[A-Z][A-Z]\d{8}\d{16}$/.test(bank);
  16. if (reg){
  17. $("span").text("Good Formatting!");
  18. }else
  19. {
  20. $("span").text("BAD JOB");
  21. }
  22. });
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement