Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   var main=function() {
  2.     $('.article').click(function() {
  3.         $(this).addClass('current');
  4.         $(this).children('.description').show();
  5.     });
  6.  
  7.     $(document).keypress(function(event) {
  8.         if (event.which === 110) {
  9.           var currentArticle = $('.current');
  10.           var nextArticle = currentArticle.next();
  11.        
  12.           currentArticle.removeClass('current');
  13.           nextArticle.addClass('current');  
  14.         }
  15.     });  
  16. };
  17.  
  18. $(document).ready(main);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement