Hi
Can you show me an example of how I can use the new jQuery.js script that comes with the Q3 release of the Telerik controls?
I include it as the last js script in my scriptmanager but it causes all telerik controls to stop working and my normal jquery syntax won't work???
The JS error i get is Telerik.Web.UI.RadPanelBar is undefined but works fine when i remove the new jquery script from my script manager.
Regards
Can you show me an example of how I can use the new jQuery.js script that comes with the Q3 release of the Telerik controls?
I include it as the last js script in my scriptmanager but it causes all telerik controls to stop working and my normal jquery syntax won't work???
The JS error i get is Telerik.Web.UI.RadPanelBar is undefined but works fine when i remove the new jquery script from my script manager.
$(document).ready(function() { |
$('#Dashboard').css({ top: '-30px'}); |
$('#Dashboard').hover(function() { |
$(this).animate({ top : '0px' }, 200); |
}, function() { |
$(this).animate({ top : "-30px" }, 200); |
}); |
}); |
Regards