items.hrefString
Defines the navigation link's url of the item (rendered if navigational is true).
Example
<nav id="breadcrumb"></nav>
<script>
$("#breadcrumb").kendoBreadcrumb({
navigational: true,
items: [
{ type: "rootitem", href: "/", text: "Home", showText: true },
{ type: "item", href: "/products", text: "Products" },
{ type: "item", href: "/products/laptops", text: "Laptops" }
]
});
</script>