IE8 Extension compatibility with regards to event objects
IE8 Extension compatibility with regards to event objects
Hi!
Our firm's project wants to use the ColReorder, ColVis, KeyTable and TableTools extensions. Each of these extensions use the preventDefault() function on event objects passed as parameters as opposed to the window.event object used in IE8.
We understand that the project is IE8 compatible, but should we expect that these plugins will have compatibility issues since they do not seem to use the code found at this SO answer? http://stackoverflow.com/a/1000606
Thanks for your help and for the great software!
This question has an accepted answers - jump to answer
Answers
These libraries all use jQuery for their events, and jQuery aspects this problem out. If you look in the jQuery code, you will find that it overrides the default event
preventDefault
function with:Have you tried the software in IE8? They should all run fine.
Allan
Yes, but I did not notice the code you cited, so this comes as a relief.
Thank you so much for the prompt answer!