1.9.0 IE9 bug Console is undefined
1.9.0 IE9 bug Console is undefined
I'm receiving a Console is undefined error on line 4535 when trying to use this example:
http://datatables.net/forums/discussion/comment/30496#Comment_30496
This appears to only happen in IE9 for me with the latest 1.9.0 release (and 1.9.1.dev).
I fixed it locally by changing line 4535 from this:
[code]
else if ( console !== undefined && console.log )
[/code]
to this:
[code]
else if ( typeof console !== "undefined" && console.log )
[/code]
http://datatables.net/forums/discussion/comment/30496#Comment_30496
This appears to only happen in IE9 for me with the latest 1.9.0 release (and 1.9.1.dev).
I fixed it locally by changing line 4535 from this:
[code]
else if ( console !== undefined && console.log )
[/code]
to this:
[code]
else if ( typeof console !== "undefined" && console.log )
[/code]
This discussion has been closed.
Replies
Now, if I can just figure out why my layout is generating a warning to the log, I'll be all set!
http://www.datatables.net/forums/discussion/8445/layout-of-2-side-by-side-columns-w-scrolling-doesn039t-apply-styles-in-ie#Item_2
Regards,
Allan