I'm using following script for Fixed my menu when Scroll the page.
var num = 5;
$(window).bind('scroll', function () {
    if ($(window).scrollTop() > num) {
        $('.scroll').css({'position':'fixed', 'top':'0px'});
    } else {
        $('.scroll').css({'position':'', 'top':''});
    }
});
I'm using this script for table. See Jsfiddle. When Scroll Down, that title is going contraction to left left side.
Why It's happening and How I can fix? It should support major browsers(not IE).
 
    