This example shows how to use the client-side API of Telerik Splitter for ASP.NET MVC.

To use the client-side API you should first retrieve the splitter client-side object. The following code snippet shows how to do this:

<script type="text/javascript">
function getSplitter(){
    // "Splitter" is the value specified by the Name() method.
    var splitter = $("#Splitter").data("tSplitter");
    return splitter;
}
</script>

The available client-side methods are:

All of the above methods accept pane as either a DOM element, jQuery selector or a jQuery object.