Hello everyone,
The following line is in an external .js file in the same directory as my html file. It is called when a button is pushed. txtPadNum is a textbox in the html file. In IE, it works perfectly. In Firefox, it does not update the div's innerHTML AT ALL. What doesn't firefox like?
Thanks
Pulsar
---
(it is all on one line in my code)
The following line is in an external .js file in the same directory as my html file. It is called when a button is pushed. txtPadNum is a textbox in the html file. In IE, it works perfectly. In Firefox, it does not update the div's innerHTML AT ALL. What doesn't firefox like?
Thanks
Pulsar
---
Code:
document.getElementById('uploadContainer').innerHTML = "<a href=index.php?action=u&etx=" + escape(inputEncryptedText) + "&pad=" + escape(document.getElementById('txtPadNum').value) + ">Upload Message</a>";-
(it is all on one line in my code)