items

Gets items' elements in a jQuery array.

Returns

jQuery the items collection as jQuery array.

Example

<nav id="bottomnav"></nav>

<script>
    var bottomNav = $("#bottomnav").kendoBottomNavigation({
        items: [
            { text: "Home", icon: "home" },
            { text: "Info", icon: "info-circle" },
            { text: "Contact", icon: "envelope" }
        ]
    }).data("kendoBottomNavigation");

    bottomNav.items().find(".k-bottom-nav-item-text").hide();
</script>
In this article