I have a script (jsfiddle demo) that keeps the row title and column title of a large table visible while scrolling. The second row of the header has a < select > element in each cell. The problem is that when I scroll the table and the header “floats”, the selects are not working anymore. They are not selectable. And the first row is not active too (cannot select the text, for copy-paste). Is there any solution to fix this? Thanks.
I have a script ( jsfiddle demo ) that keeps the row title and
Share
this doesn’t affect all browsers and is caused by
pointer-events: none;set in CSS forclone– just remove that declaration and everything works like a charm:looking at the documentation this is intended behaviour: