I am working on dotnetnuke 7.05 CMS website with a view to upgrade the UI.
The SmartTag css and js were loaded using DotNetNuke ClientResourceManager thus:
<dnn:STYLES runat="server" ID="xyz" Name="xyz" StyleSheet="css/smart_tab_vertical.css" PathNameAlias="SkinPath" />
<dnn:DnnJsInclude runat="server" FilePath="js/jquery.smartTag.js" PathNameAlias="SkinPath" />
The smartTag is inmplemented using jquery selector in the Home.ascx, in a $(document).ready (function() {
$('#zyz').smartTag({autoProgress: false, stopOnFocus:true, transitionEffect: 'vSlide'});
The issue I am facing is this,
If I enable the https://3rdP/jquery/jquery.min.js, the smartTag will cease to work and when I Inspect the page with Google Chrome Develop Tools, I will see the error: "Uncaught TypeError: $(...).smartTag is not a function .....
However, the datepicker calendar will be funtioning well
But if disable the https://3rdP/jquery/jquery.min.js, the smartTag will work well but the datepicker calendar will not function well.
Any help on this issue will be highly appreciated.
This is urgent please, as I have timeline to meet.
Thanks
Adegbola