diff --git a/dist/js/jquery.jexcel.js b/dist/js/jquery.jexcel.js index fba1cf7b..6f5b0649 100644 --- a/dist/js/jquery.jexcel.js +++ b/dist/js/jquery.jexcel.js @@ -950,6 +950,15 @@ var methods = { } } } + + // On mouse over event for cells + if ($.fn.jexcel.ignoreEvents != true) { + if ($.fn.jexcel.defaults[id].onmouseover) { + if (typeof($.fn.jexcel.defaults[id].onmouseover) == 'function') { + $.fn.jexcel.defaults[id].onmouseover($('#' + $.fn.jexcel.current), $(e.target)); + } + } + } } } }