This is a migrated thread and some comments may be shown as answers.

[Solved] mouseover event in ie8 not working

1 Answer 18 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Geeta
Top achievements
Rank 1
Geeta asked on 21 Mar 2012, 01:34 PM

.ClientEvents(events => events.OnLoad("Grid_onLoad"))

 

function Grid_onLoad() {
 $('#Grid tr:not(.t-grouping-row').live('mouseover', function (e, element) {

 

 

mouseover event code is not working in ie8 browser.

1 Answer, 1 is accepted

Sort by
0
Geeta
Top achievements
Rank 1
answered on 27 Mar 2012, 06:19 AM

User delegate with hover instead of live

 

$('#Grid').delegate('tr:not(.t-grouping-row)', 'hover', function () {

Tags
Grid
Asked by
Geeta
Top achievements
Rank 1
Answers by
Geeta
Top achievements
Rank 1
Share this question
or