Topic: Firefox java problems
I've stumbled across a javascript problem when making the Plugin Manager/Uploader. In Opera and IE this page works just fine, but Firefox can't handle it.
The code used is essentially the one below. The problem is that I get "undefined" as value in firefox. It seem like it's using id's "1,3,5,7,9,..." instead of "0,1,2,3,4,..." when stepping through the items. Does someone know what's wrong?
var row = document.getElementById(name);
document.forms[0].area.value = row.childNodes.item(0).innerHTML;
I've put an full example page here: http://www.etek.chalmers.se/~e0mool/pun … error.php4