show

Shows the badge.

Example

<button>Button <span id="badge"></span></button>
<script>
    var badge =  $('#badge').kendoBadge({
        text: 'badge',
        visible: false
    }).data('kendoBadge');

    badge.show();
</script>
In this article