item

Get item's element by index.

Parameters

index Number|String (required)

The zero-based index of the item.

Returns

jQuery the found item with the specified id.

Example

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

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

    var home = bottomNav.item(0);
    bottomNav.enable(home, true);
</script>
In this article