To add translation to term (term_lookup.php) an nice
AJAX solution is used, but it tries to do
table.innerHTML. This will work only in Gecko based
browsers and Opera.
It will NOT work in MSIE 6 (7?) and Konqueror 3.x.
Quote from DOM Element reference for Gecko:
"It should never be used to write parts of a table—
W3C DOM methods should be used for that—though it can
be used to write an entire table or the contents of a
cell."
(http://developer.mozilla.org/en/docs/DOM:element.innerHTML)
Quote from MSIE 6 DOM object reference:
"The property [innerHTML] is read/write for all
objects except the following, for which it is
read-only: COL, COLGROUP, FRAMESET, HTML, STYLE,
TABLE, TBODY, TFOOT, THEAD, TITLE, TR."
(http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/innerhtml.asp)
Logged In: YES
user_id=1268346
Originator: NO
fixed - and translations show up in both IE and Konqueror. But you still can't add translations using Konqueror - the script makes use of "opener" object which Konqueror doesn't seem to support, and I had no ideas for a quick fix there.