Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. //tentativa 1
  2. $('#idDiv').val() != undefined
  3.  
  4. //tentativa 2
  5. typeof($('#idDiv').val()) != 'undefined'
  6.  
  7. //tentativa 3
  8. var varIdDiv = $('#idDiv').attr("value");
  9. if (varIdDiv) { /*código maroto*/ }
  10.  
  11. if ($('#idDiv').length > 0) { /*código maroto*/ }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement