items.linkClassString
Defines the link classes (the a element).
Example
<nav id="breadcrumb"></nav>
<script>
$("#breadcrumb").kendoBreadcrumb({
navigational: true,
items: [
{ type: "rootitem", href: "/", text: "Home", linkClass: "custom-root-link", showText: true },
{ type: "item", href: "/products", text: "Products", linkClass: "custom-nav-link" },
{ type: "item", href: "/products/laptops", text: "Laptops", linkClass: "custom-nav-link active" }
]
});
</script>
In this article