Welcome Guest, Not a member yet? Register   Sign In
enable/disable submit button based on my row table value
#3

(This post was last modified: 10-05-2018, 04:47 AM by Piotr.)

You should do this by finding this button by id or class or if this is only one submit button on page by selector $('input[type=submit]');
Im not exactly know how your code should work with this customerId but i think you want to disable button when customerId gonna be empty?

Code:
$('#mytable tr').each(function()
{
  if (!this.rowIndex) return; // skip first row
  var customerId = this.cells[3].innerHTML;
  if(customerId == ''){  // Im understand that innerHTML return text value
     $('#mysubmitbtn').prop('disabled', true);
   }
});
Reply


Messages In This Thread
RE: enable/disable submit button based on my row table value - by Piotr - 10-05-2018, 04:45 AM



Theme © iAndrew 2016 - Forum software by © MyBB