Skip to content

Instantly share code, notes, and snippets.

@kevinansfield
Created February 15, 2010 18:37
Show Gist options
  • Save kevinansfield/304866 to your computer and use it in GitHub Desktop.
Save kevinansfield/304866 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(document).ready(function() {
$('.temphol').hover(function() {
$(this).children('.front').stop().animate({ "top" : '105px'}, 500);
}, function() {
$(this).children('.front').stop().animate({ "top" : '7px'}, 300);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment