items.url String
The URL (href) to which the item will navigate to.
Example
<nav id="bottomnav"></nav>
<script>
$("#bottomnav").kendoBottomNavigation({
items: [
{ text: "Home", icon: "home", url: "http://www.telerik.com" },
{ text: "Info", icon: "info-circle" },
{ text: "Contact", icon: "envelope" }
]
});
</script>