Jquery Conflict
Posted: 02 Nov 2015
I am using SPForms for one of our sites, where the master page already includes a refrence for jquery files (as shown below).
<SharePoint:ScriptLink ID="ScriptLinkjQuery" runat="server" Defer="False" Name="/_layouts/15/Portal15Branding/scripts/jq/jquery-1.10.2.min.js"></SharePoint:ScriptLink>
<SharePoint:ScriptLink ID="ScriptLinkForModernizer" runat="server" Defer="False" Name="/_layouts/15/Portal15Branding/scripts/jq/modernizer.js"></SharePoint:ScriptLink>
<SharePoint:ScriptLink ID="ScriptLinkForSPServices" runat="server" Defer="False" Name="/_layouts/15/Portal15Branding/scripts/jq/jquery.SPServices-2014.01.min.js"></SharePoint:ScriptLink>
when I try to hide tabs using the logic below, i recive an error ""Object doesn't support property or method 'tabs'"
$('#fd_tabcontrol-0').tabs('option', 'disabled', [1]);
for me it looks to be an issue with multiple loads of jquery file.
Please advice
<SharePoint:ScriptLink ID="ScriptLinkjQuery" runat="server" Defer="False" Name="/_layouts/15/Portal15Branding/scripts/jq/jquery-1.10.2.min.js"></SharePoint:ScriptLink>
<SharePoint:ScriptLink ID="ScriptLinkForModernizer" runat="server" Defer="False" Name="/_layouts/15/Portal15Branding/scripts/jq/modernizer.js"></SharePoint:ScriptLink>
<SharePoint:ScriptLink ID="ScriptLinkForSPServices" runat="server" Defer="False" Name="/_layouts/15/Portal15Branding/scripts/jq/jquery.SPServices-2014.01.min.js"></SharePoint:ScriptLink>
when I try to hide tabs using the logic below, i recive an error ""Object doesn't support property or method 'tabs'"
$('#fd_tabcontrol-0').tabs('option', 'disabled', [1]);
for me it looks to be an issue with multiple loads of jquery file.
Please advice