For documentation visit Lobipanel webpage
$('selector').lobiPanel();
                    $('selector').lobiPanel({
reload: false,
close: false,
editTitle: false
});
                    $('selector').lobiPanel({
reload: {
    icon: 'fa fa-refresh'
},
editTitle: {
    icon: 'fa fa-edit',
    icon2: 'fa fa-save'
},
unpin: {
    icon: 'fa fa-arrows'
},
minimize: {
    icon: 'fa fa-chevron-up',
    icon2: 'fa fa-chevron-down'
},
close: {
    icon: 'fa fa-times-circle'
},
expand: {
    icon: 'fa fa-expand',
    icon2: 'fa fa-compress'
}
});
                    Unpin the panel and try to resize it.
$('selector').lobiPanel({
minWidth: 300,
minHeight: 300,
maxWidth: 600,
maxHeight: 480
});
                    Load content from specified url and apply highlight code
$('selector').on('loaded.lobiPanel', function(ev, lobiPanel){
var $body = lobiPanel.$el.find('.panel-body');
$body.html('<div class="highlight"><pre><code>' + $body.html() + '</code></pre></div>');
hljs.highlightBlock($body.find('code')[0]);
});
$('selector').lobiPanel({
loadUrl: 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.css',
bodyHeight: 400
});
                    Drag panels by clicking on the headers
| # | First Name | Last Name | Username | 
|---|---|---|---|
| 1 | Mark | Otto | @mdo | 
| 2 | Jacob | Thornton | @fat | 
| 3 | Larry | the Bird | 
| # | First Name | Last Name | Username | 
|---|---|---|---|
| 1 | Mark | Otto | @mdo | 
| 2 | Jacob | Thornton | @fat | 
| 3 | Larry | the Bird | 
$('.panel').lobiPanel({
sortable: true
});
                    data-* attributes| # | First Name | Last Name | Username | 
|---|---|---|---|
| 1 | Mark | Otto | @mdo | 
| 2 | Jacob | Thornton | @fat | 
| 3 | Larry | the Bird | 
<div class="panel panel-default lobipanel" data-inner-id="lobipanel-data-attributes" data-body-height="300" data-tooltips="false" data-min-width="400" data-resize="horizontal" data-close="{tooltip: 'custom'}">
<div class="panel-heading">
   <div class="panel-title">
       This is panel title
   </div>
</div>
<div class="panel-body">
    content
</div>
</div>
                    <div class="panel panel-info lobipanel">
<div class="panel-heading">
    <div class="panel-title">
        <h4>LobiPanel title</h4>
    </div>
</div>
<div class="panel-body">
    <div class="panel panel-warning lobipanel">
        <div class="panel-heading">
            <div class="panel-title">
                <h4>Nested LobiPanel title</h4>
            </div>
        </div>
        <div class="panel-body">
            Panel 1
        </div>
    </div>
    <div class="row">
        <div class="col-lg-6">
            <div class="panel panel-default lobipanel" data-sortable="true">
                <div class="panel-heading">
                    <div class="panel-title">
                        <h4>Panel title</h4>
                    </div>
                </div>
                <div class="panel-body">
                    Panel 2
                </div>
            </div>
            <div class="panel panel-default lobipanel" data-sortable="true">
                <div class="panel-heading">
                    <div class="panel-title">
                        <h4>Panel title</h4>
                    </div>
                </div>
                <div class="panel-body">
                    Panel 3
                </div>
            </div>
        </div>
        <div class="col-lg-6">
            <div class="panel panel-default lobipanel" data-sortable="true">
                <div class="panel-heading">
                    <div class="panel-title">
                        <h4>Panel title</h4>
                    </div>
                </div>
                <div class="panel-body">
                    Panel 4
                </div>
            </div>
            <div class="panel panel-default lobipanel" data-sortable="true">
                <div class="panel-heading">
                    <div class="panel-title">
                        <h4>Panel title</h4>
                    </div>
                </div>
                <div class="panel-body">
                    Panel 5
                </div>
            </div>
        </div>
    </div>
</div>
</div>