Input with default settings:
            $('#input').SBInput({});
        
Input with email keyboard and predefined value
        $('#input2').SBInput({
            keyboard: {
              type: 'email'
            }
        });
        
Input with maximum 4 symbols
        $('#input3').SBInput({
            max: 4
        });
        
Input with num keyboard
        $('#input4').SBInput({
            keyboard: {
                type: 'num'
            }
        });
        
Input with formatText function
        $('#input5').SBInput({
            formatText: function ( text ) {
                return text.toUpperCase();
            }
        });