I have a lookup rule filling an input box. I want to change the value if it is equal to a specific number. Here is the code I am using.
$(document).ready(function () {
$('#q18 input').change(function() {
if ($('#q18 input').val() == '288'){
$('#q18 input').val('226');
}
}
})
Not sure if it is not working becuase of the lookup rule or not.