asked on March 26, 2018
HI All.
I have a form that needs the text field background to change color when their input is altered.
It works on the submission form but the color does not display on the next user task review step.
This is my form :
This is my code:
$(document).ready(function() { setTimeout(function(){ $('body').addClass('loaded'); }, 3000); highlight(); $('.cf-table-block').on('blur', 'input', highlight); function highlight(){ $('.cf-table-block tbody tr').each(function(){ if ($('[name=IsLocked]').val() == 'True'){ var t1 = $(this).find('.tableclass .ro').text();} $("input[type=text]").change(function() { $(this).css("background","red"); }); }); } });
Any help will be highly appreciated.
Thanks.
0
0