I am researching why our website is not responding on Edge. We have two elements on the page that are using frames. One is a text field and the other is a dropdown. The code listens and responds once the dropdown has been populated. However, when running it on Edge & Firefox the application remains idle and does not respond. Basically, the child frame is not passing the var data to the parent.
I have cleared my cache, the code does work on IE. I have also researched the Lazy Frame Loading/Load on Demand feature in Chromium to see if that is presenting a bug, but I could not find anything.
Has anyone ran into this issue?
<script type="text/javascript" language="javascript">
parent.frames.menu.mainform.THIS_ID.value="";
parent.frames.menu.mainform.MORE_TYPE.value="";
parent.frames.menu.mainform.REFRESH.value=0;
parent.frames.menu.mainform.SOME_OTHER_VAR.value=$write_perm;
parent.frames.menu.eval('clickImage("home")');
parent.frames.menu.mainform.THAT_ID.value="";
</script>
<script type='text/javascript' language='javascript'>
function resetAllInputs () {
document.ADM_Form.THAT_ID.value = "";
document.ADM_Form.THIS_ID.value = "";
document.ADM_Form.IP.value="";
document.ADM_Form.WHAT_TYPE.value="";
document.ADM_Form.MORE_TYPE.value="";
parent.frames.menu.mainform.SOME_ID.value = "";
parent.frames.menu.mainform.OTHER_ID.value = "";
parent.frames.menu.mainform.SOME_TYPE.value="";
parent.frames.menu.mainform.REFRESH.value=document.SOME_Form.REFRESH.value;
}