indupriya9
Programmer
Hi everyone
I have a javascript that works in IE but not in Firefox.
Here is the code
What the function does is adds the values in the main form from the subform.
Any ideas on how to fix this please?
Thanks in advance
ip
I have a javascript that works in IE but not in Firefox.
Here is the code
Code:
function addtoorderform(rid,prodId,proname,UnitPrice,no)
{
var nX;
var Qty;
nX=eval("document.getElementById('txtQty" + no +"')");
//alert(nX.value);
Qty=nX.value;
if(nX.disabled!=true)
{window.opener.popSetTicker(rid,prodId,proname,UnitPrice,Qty);}
nX.disabled=true
}
What the function does is adds the values in the main form from the subform.
Any ideas on how to fix this please?
Thanks in advance
ip