Q) I have used JQuery for a div in webpart to slideup and slidedown, in updatepanel , as... $(document).ready( $(function () { $("#userClose").click(function () { $('#userDetailsShow').slideUp('3000', function () { $('#userDetailsHide').slideDown('3000'); } ); }); Its working fine but giving error:-- "object doesn't support this property or method 'call' in JQuery v1.4.3.min.js," Solution: $(document).ready( function () { $("#userClose").click(function () { $('#userDetailsShow').slideUp('3000', function () { $('#userDetailsHide').slideDown('3000'); }); }); You have an extra “$(“ before “function()” that would not be necessary. If still not working - Are you using any other javascript libraries other than jQuery. If you are using Prototype and jQuery you might see an error similar to this. Because both are using ‘$’ related syntax for object acc...
Enterprise AI & Cloud Architecture is a thought-leadership platform focused on AI-driven, cloud-based enterprise systems. It examines advanced architectures leveraging SharePoint, Microsoft 365, Azure, Power Platform, RAG, and Agentic AI to modernize mission-critical environments in healthcare, research, government, and enterprise organizations.