I use IE 6 (corporate credentials) on XP, and also (primarily) Firefox 3. In them, I make a DHTML table using the prototype.js library version 1.6.0.3.
I have javascript code for an event handler to add a row to a table that works fine in Firefox but is completely ignored in Internet Explorer. I can go through the code in the MS "script" debugger (yes, I know that it was deprecated and deprecated, but it was available), so I know that the event is being connected.
The code is something like:
var xTable = $( 'x_list')
var aRow = new Element( 'tr')
aRow.setAttribute( 'id', id)
. . .
var xEl = new Element( 'td')
. . .
aRow.insert( xEl)
. . .
debugger
xTable.insert( aRow)
Has anyone else had experience with conflicts between Element.insert () and Explorer?