Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
/*---------Mobile Config Menu toggle
    ============================================*/
    
    $('.config-toggle').on('click', function(e){
        e.preventDefault();
        var $this = $(this),
        container = $this.closest('.config-panel'),
        menuContentAll = container.
                                        find('.config-panel__menu-content--toggle',
                                                '.config-panel__menu-content'),
        menuContent =  container.
                                        find('.config-panel__menu-content');
        $(this).closest('.wrapper')
                    .find('.config').addClass('show');
        
        if (!menuContent.hasClass('toggle-open')) {
            $('.config-main-toggle, .config-panel__menu-type-link')
            .trigger('click');
        }
    });
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
parnasmipro
0viewers