Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var main = function() {
  2.     $('.article').click(function() {
  3.         $('.article').removeClass('current');
  4.         $('.description').hide();
  5.        
  6.         $(this).addClass('current');
  7.         $(this).children('.description').show();
  8.     });    
  9.     $(document).keypress(function(event) {
  10.         if(event.which === 111) {
  11.             $('.current').children('.description').toggle();
  12.         }
  13. });
  14.  
  15. $(document).ready(main);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement