items.title String

Specifies the label for the speed-dial item that will be read by assistive technologies.

Example

<button id="fab-items"></button>

<script>
    $('#fab-items').kendoFloatingActionButton({
        icon: 'home',
        items: [{
            icon: 'print',
            title: 'print action title',
/* The result can be observed in the DevTools(F12) console of the browser. */
            click: function() { console.log('print action'); }
        }]
    });
</script>
In this article