Guest User

Untitled

a guest
Jul 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <input name="phone" id="phone" class="some class {validate:{required:true,number:true, rangelength:[2,8]}}" />
  2.  
  3. $('#phone').change(function(){
  4. if($(this).val().length > 0)
  5. {
  6. $('#address').removeClass().addClass('original class without validation');
  7. }
  8. });
Add Comment
Please, Sign In to add comment