This question is locked. New answers and comments are not allowed.
I have a page using tab and menu but working with other jquery plugin. In the Site.master I used:
However, menu works fine but not the tab. I then manually register telerik js files in the head of the Site.Master:
Yet, it's still not working. Can someone help?
<% Html.Telerik().ScriptRegistrar().Jquery(false); %>
</body>
</html>However, menu works fine but not the tab. I then manually register telerik js files in the head of the Site.Master:
<head runat="server"> <% Html.Telerik().ScriptRegistrar().DefaultGroup(group => group .Add("jquery-1.4.2.min.js") .Add("telerik.common.min.js") .Add("telerik.menu.min.js") .Add("telerik.tabstrip.min.js")); %>........Yet, it's still not working. Can someone help?