ThePixelMe

wp support - expandable/collapsible posts - custom.js

Mar 19th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function($) {
  2.  
  3.     var categoryName = $('.category-name');
  4.     var categoryListItem = $('.categories-list-item');
  5.  
  6.     categoryName.on('click', function() {
  7.         $(this).closest(categoryListItem).toggleClass('active');
  8.     });
  9.  
  10. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment