Side modal box
Animated side modal box (Right)
Side modal box size (Right)
Customized side modal box
Example for each button on this page
$('[data-modal]').on('click', function() {
    let obj = $($(this).data('modal'));  
    $(obj).modal({
        position: $(this).data('position') || '',
        animate: $(this).data('animate') || '',
        sizing: $(this).data('sizing') || '',
        onOpen: function() {
            console.log('Modal is open');
        },
        onClose: function() {
            console.log('Modal is close');
        }        
    });
});