1.9.4 IE9 issue

1.9.4 IE9 issue

JeffGiesbrechtJeffGiesbrecht Posts: 1Questions: 0Answers: 0
edited February 2014 in Bug reports
I have an empty table that gets recreated in a jquery tab and while Chrome and IE 11 can handle the issue with grace IE 9 trips up. The offending lines are 3225 and 3245 and a simple check of the o.nTable.ChildNodes before they are assigned makes everything better.

[code]
if (o.nTable.childNodes[0] !== undefined)
o.nTable.insertBefore(nTheadSize, o.nTable.childNodes[0]);


if (o.nTable.childNodes[1] !== undefined)
o.nTable.insertBefore( nTfootSize, o.nTable.childNodes[1] );
[/code]

Replies

  • allanallan Posts: 61,722Questions: 1Answers: 10,108 Site admin
    Can you link to a test page showing the issue so I can ensure it is fixed in the latest versions please?

    Allan
This discussion has been closed.