I have some JavaScript that hides a Table column and field that was working until I upgraded to Forms 10.3.1
// Hide Table Column
$(document).on("lookupcomplete", function(event) {
$('table.tablehide thead th').eq(1).hide();
$('table.tablehide thead th').eq(7).hide();
$('table.tablehide thead th').eq(8).hide();
$('table.tablehide tbody tr td.hidefield').hide();
});
This example hides column 1,7 and 8 and hides the fields with the hidefield set.
Any thoughts on why this no longer works in 10.3.1?