change

    Fires when the value of the Breadcrumb is changed.

    Event Data

    e.sender kendo.ui.Breadcrumb

    The Breadcrumb instance that triggered the event.

    e.value String

    The new value(path) of the Breadcrumb.

    Example - handling the change event

    Open In Dojo
    <nav id="breadcrumb"></nav>
    
    <script>
        $("#breadcrumb").kendoBreadcrumb({
            value: 'Telerik UI/Navigation/Breadcrumb',
            change: function(e) {
    /* The result can be observed in the DevTools(F12) console of the browser. */
                console.log(e.value);
            }
        });
    </script>
    In this article