Advertisement
chubbyninja

Untitled

Jun 5th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  $('.hooktoparent').on('click',function(e){
  3.  
  4.   if( $(e.target).hasClass('bg_control') )
  5.   {
  6.    return;
  7.   }
  8.  
  9.   if( $(e.target).parent().attr('data-id') != $(e.currentTarget).attr('data-id') )
  10.   {
  11.    return;
  12.   }
  13.   parent.ActivePanel( $(this).attr('data-id') );
  14.   $('.hooktoparent_active').removeClass('hooktoparent_active');
  15.   $(this).addClass('hooktoparent_active');
  16.  });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement