Addclass Causing Undefined Is Not A Function
I have: mouseOver: function () { var catId = this.category_id; $('#expenditureSummaryGrid .k-grid-content tr').each(function() { if($('td span', this).data('id') == ca
Solution 1:
Since .addClass()
is a jQuery function, you likely need to change
this.addClass('grid-hover');
to
$(this).addClass('grid-hover');
Post a Comment for "Addclass Causing Undefined Is Not A Function"