Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ME!
- $('.cellhead', $('.cellpane')).click(function(){
- $('.cellhead', $('.cellpane'))
- .not($(this))
- .siblings('.cellctn')
- .slideUp();
- $(this)
- .siblings('.cellctn')
- .slideToggle();
- });
- // VS ROY!
- $('.leftPane').children('.cellpane').first().addClass('active');
- $('.leftPane').children('.cellpane').first().children('.cellctn').toggle();
- $('.cellpane').click(function(){
- if($('body').find('.active').length != 1){
- $(this).children('.cellctn').first().slideToggle();
- $(this).addClass('active');
- /*if($(this).children('.cellctn').first().hasClass('active')){
- $(this).children('.cellctn').first().
- }*/
- }
- else{
- $(this).children('.cellctn').first().slideToggle();
- $('.active').children('.cellctn').first().slideToggle();
- $('.active').removeClass('active');
- if($(this).hasClass('active')){
- $(this).children('.cellctn').first().removeClass('active');
- }
- else{
- $(this).addClass('active');
- }
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement