? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/domains/happytokorea.com/public_html_bk/happyezystyle/js/
File Upload :
Current File : /home/admin/domains/happytokorea.com/public_html_bk/happyezystyle/js/withoutPlugin.js

$(function() {

    $("#explore-nav").delegate("li > a", "click", function() {
            
        // Figure out current list via CSS class
        var curList = $("#explore-nav li a.current").attr("rel"),
        
        // List moving to
            $newList = $(this),
            
        // Figure out ID of new list
            listID = $newList.attr("rel"),
        
        // Set outer wrapper height to (static) height of current inner list
            $allListWrap = $("#all-list-wrap"),
            curListHeight = $allListWrap.height();
        $allListWrap.height(curListHeight);
                
        if ((listID != curList) && ($(":animated").length == 0)) {
                    
            // Fade out current list
            $("#"+curList).fadeOut(300, function() {
                
                // Fade in new list on callback
                $("#"+listID).fadeIn();
                
                // Adjust outer wrapper to fit new list snuggly
                var newHeight = $("#"+listID).height();
                $allListWrap.animate({
                    height: newHeight
                });
                
                // Remove highlighting - Add to just-clicked tab
                $("#explore-nav li a").removeClass("current");
                $newList.addClass("current");
                    
            });
            
        }   
        
        // Don't behave like a regular link
        // Stop propegation and bubbling
        return false;
    });

});

T1KUS90T
  root-grov@210.1.60.28:~$