Quick Cross Browser JS question, when setting the value of a textbox:
document.getElementById("balanceText").innerText = "111";
and
document.getElementById("balanceText").value = "111";
Both Work grand in IE,
But they will not work in Chrome, FF, Opera or Safari.
Is there an alternate method that will work in these browsers ?