Guest User

Untitled

a guest
Jan 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. $(document).ready(function()
  2. {
  3. $('#region_btnSave').click(function ()
  4. {
  5. var txtHValue = $("#region_tabVersao_N_txtH").val();
  6. var emailAddressValue = $("#region_tabVersao_N_txtM").val();
  7. if (emailAddressValue == '' || txtHValue == '') {
  8. $("#region_tabVersao_N_txtH").after('<span class="error">Campo Obrigadorio</span>',null);
  9. return false;
  10. }
  11. else {
  12. //not all text fields are valid
  13. $("#region_tabVersao_N_txtH").after('', null);
  14. }
  15.  
  16. });
  17. });
  18.  
  19. <td>
  20. <asp:TextBox ID="txtH" runat="server" MaxLength="3" Width="40" />
  21. <span class="error"></span>
  22. </td>
Add Comment
Please, Sign In to add comment