Guest User

Untitled

a guest
Mar 14th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var clickedHeading = $(".workSpaceManagement > .workSpaceScroller > h4").text();
  2.  
  3.  
  4.  
  5. $(".workSpaceManagement > .workSpaceScroller > h4")
  6.  
  7. .click(function() {
  8.  
  9. var listCollapseIdName = this.id;
  10.  
  11.  
  12.  
  13. // I want this guy to only select the ul with the class that matches the ID from above
  14.  
  15. $(".workSpaceManagement > .workSpaceScroller > ul").toggle('slide',{direction: 'up'});
  16.  
  17. });
Add Comment
Please, Sign In to add comment