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...
Your comprehensive resource for Microsoft 365 productivity solutions. Explore expert tutorials, best practices, and real-world implementations for SharePoint Online, Power Platform (Power Apps, Power Automate, Power BI), Microsoft Copilot and Python. Whether you're building automated workflows, creating custom apps, managing SharePoint sites, or leveraging AI with Copilot, find practical guides and insights to transform your digital workplace