Column A is typed in.
Column B displays options based on lookup from data in column A.
Column C will display value based on lookup from column B (if a value is returned).
I am trying to get the Submit button to be hidden if there is ANY value in any row in Column C.
$(document).ready(function()
{
$('.Table').on('change','.C input', outsideservice);
console.log("0.5");
function outsideservice()
{
$('.Table tbody tr').each(function ()
{
$(this).find('.C input').each(function ()
{
if ($(this).val() != '')
{
$('.Submit').hide();
}
else
{
$('.Submit').show();
}
});
});
}
});