hi everyone.
I am populating the field GPID and GPID copy with Look up rules, that works fine.
I am trying to bring up an alert every time this happens but it does not seem to work.
Any help will be appreciated.
here is my code and a screen shot of my form.
$(document).ready(function() {
$('.cf-table-block').change(check)
function check()
{
$('.cf-table-block tbody tr').each(function () {
var value = $(this).find('.gpid input').val();
var copy = $(this).find('.copy input').val();
if (value == copy){
alert("match");
$('.Submit').hide()
}
else{
$('.Submit').show()
}
});
});