Move this element to a target container elsewhere in the markup

Basic Example

        
<button class="btn btn-success bse-move-this" data-target=".action-panel">
    External Action
</button>

<!-- 'move-this' element is appeneded to 'target' container  -->
<div class="action-panel">
    <button class="btn btn-default">
        Action A
    </button>
    <button class="btn btn-default">
        Action B
    </button>
</div>