This question is locked. New answers and comments are not allowed.
I'm trying to dynamically expand/collpase Telerik Panel bar from Jquery (onload)
Using jquery-1.7.1.min.js script file reference
I'm getting error when I try to use the following code (reason is .element is undefined), Could you please assist me?
function expandPanel(){
var panelBar = $("#PanelBar").data("tPanelBar");
var item = ("> li",panelBar.element)[0];
panelBar.expand(item);
}$(document).ready(function () {expandPanel();
}