Issue
I have a table with some cells. I also have a simple div
with position: absolute
and with an alpha background and with z-index: 1
. So, this div
lays on the table. In my code I catch the mousemove
event and get the current cell. But with this div
on top of the table, I can't get the underlying cell. Is there some way to get triggered the underlying mousemove
event on a cell?
Solution
You basically needs to set the css property pointer-events to none for div
for more info can refer: https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events
Answered By - Wasit Shafi
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.