Skip to content

Instantly share code, notes, and snippets.

@tamboer
Created April 30, 2013 07:42
Show Gist options
  • Select an option

  • Save tamboer/5487205 to your computer and use it in GitHub Desktop.

Select an option

Save tamboer/5487205 to your computer and use it in GitHub Desktop.
jQuery table row tr hover
$(document).ready(function(){
$('.hover').hide();
$('tr').hover(
//over
function(){
$(this).find('.hover').show();
}
,
//out
function(){
$(this).find('.hover').hide();
}
);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment