Guest User

Untitled

a guest
Jul 16th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $("table")
  2. .find("td :nth-child(1)")
  3. .change(function(){
  4. if (testisNAN($(this).val()) == false){
  5. $(this).before("<label class='error' title='test'>#</label>");
  6. alert('test1')
  7. }
  8. })
  9. .end()
  10. .find("td :nth-child(2)")
  11. .change(function(){
  12. if (testisNAN($(this).val()) == true){
  13. $(this).before("<label class='error' title='test'>*</label>");
  14. alert('test2')
  15. }
  16. })
Add Comment
Please, Sign In to add comment