Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. $('#button').click(function(){
  2.  
  3. if($.trim($("#inputID").val()).length == 0) {
  4. alert("Has No Value");
  5. }
  6. else{
  7. alert("Has Value");
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement