In explorer I am able to keep the thead part of my table fixed while scrolling using css expressions. Below is the css code snippet that does it : .standardTable thead tr { position: relative; top: expression(offsetParent.scrollTop); }
But this same doesn't work in chrome as expressions are deprecated for chrome. I need help in changing the "top" property of the above class using javascript or jquery. How to do it ?
Can it be done?