hello to all
i m trying telerik example from link
http://demos.telerik.com/aspnet-ajax/splitter/examples/default/defaultcs.aspx
this example is splitter example i m not able to change page on click of numbers.
in error console i m getting error is
Error: $telerik.$ is not a function
Source File: http://localhost:1567/WebSite2/Default.aspx
this error is in function
function RadSplitter1_OnClientLoad(splitter, args) {
var indexes = $telerik.$(".indexes");
indexes.each(function(i) {
$telerik.$(this).click(function() {
var contentPane = splitter.getPaneById("RadPane2");
var pageNo = $telerik.$(this).text();
var scrollValue = 750 * (pageNo - 1); //750 is the height of a 'page'
contentPane.setScrollPos(0, scrollValue);
})
})
}
how to over come from these problem.