Skip to content

Instantly share code, notes, and snippets.

@utinajerolps
Last active August 29, 2015 14:07
Show Gist options
  • Save utinajerolps/2294f7247cc26fc63032 to your computer and use it in GitHub Desktop.
Save utinajerolps/2294f7247cc26fc63032 to your computer and use it in GitHub Desktop.
code
var main = function(){
$('.article').click(function() {
$('.article').removeClass('current');
$('.description').hide();
$(this).addClass('current');
$(this).children('.description').show();
});
$(document).keypress(function(event){
if(event.which === 111) {
$('.current').children('.description').toggle();
}
});
};
$(document).ready(main);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment