Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function () {
  2.  
  3.     $('.panelContent').hide();
  4.     $('.panelIcon').html('<img src="images/condense-symbol.png">');
  5.     $('.collapsiblePanel').children('h3').click(function () {
  6.         var panel = $(this);
  7.        
  8.         $(this).siblings('.panelContent').slideToggle('fast', function () {
  9.            
  10.             if ($(this).is(':visible')) {
  11.                 panel.children('.panelIcon').html('<img src="images/expand-symbol.png">');
  12.                 //$('.silhouette').addClass('highlight');
  13.                 var highlight = $(this).data('highlight');
  14.                 console.log(highlight);
  15.                 window.selectedPanel = $(this);
  16.                 window.icon = $("#" + highlight)
  17.                 $("#" + highlight).addclass('outline');
  18.                
  19.             } else {
  20.                 panel.children('.panelIcon').html('<img src="images/condense-symbol.png">');
  21.                 $('.silhouette').removeClass('outline');
  22.             }
  23.            
  24.         });
  25.     });
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement