Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $.fn.fixCols = function (){
  2. $(this).css('table-layout','auto');
  3. $(this).find('td,th').css({
  4. 'width':'1%',
  5. 'white-space': 'nowrap'
  6. });
  7. $(this).find('td:last-child,th:last-child').width('auto');
  8. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement