Skip to content

Instantly share code, notes, and snippets.

@leopic
Created October 23, 2014 18:03
Show Gist options
  • Save leopic/937e5ba85e1755a3b45e to your computer and use it in GitHub Desktop.
Save leopic/937e5ba85e1755a3b45e to your computer and use it in GitHub Desktop.
$('tr[id^="rptlist_"] td:last-child')
.css({ display: 'block', maxHeight: '30px', overflow: 'hidden' })
.hover(
function() { $(this).css('display', 'table-cell'); },
function() { $(this).css({ display: 'block' });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment