change handler function issue

change handler function issue

Hi All,

We have text box control[actualTwo] has below functionality, we see issue in production even actualTwo has
value, sometime deltaTwo been set to blank, This issue happen inconsistently only for few users, we don't have option to connect
users, we are not able to reproduce the issue.  how can we reproduce the issue.
Browser : IE 11.


My suspect,actualTwo control has change event handler twice if any reason 2nd function ignores execution, deltaTwo will
have blank value, is this case can happen, if so how can we reproduce.

$(document).ready(function(){
  //nextdte
  $('#actualTwo').change(function(){
  doing something
  });
  
  
 //Delta
  $('#actualTwo').change(function(){
  var actualTwo = $('input[name=actualTwo]').val();
  if(actualTwo!='')
  {
  $('#deltaTwo').val(actualTwo);
  }
  else
  {
  $('#deltaTwo').val("");
  }
  });