For reasons unknown to me, I was not able to paste text into the RTE window in IE11 in my last reply. Therefore, here I am again, but this time using the Opera browser. I want to ask if I am using the correct syntax and procedure to register and initialize jQuery libraries. This code is in a container file called Portfilio.ascx which encloses the HTML module that uses the jQuery Isotope library. I don't know if code like this belongs in a skin container, but just for the record, here it is anyway.
<%@ Control Language="vb" CodeBehind="~/admin/Containers/container.vb" AutoEventWireup="false"
Explicit="True" Inherits="DotNetNuke.UI.Containers.Container" %>
<%@ Register TagPrefix="dnn" TagName="JQUERY" Src="~/Admin/Skins/jQuery.ascx" %>
<dnn:JQUERY ID="jQuery" ScriptType="jQuery" runat="server" />
<dnn:JQUERY ID="jQueryUI" ScriptType="jQueryUI" runat="server" />
<dnn:JQUERY ID="isotope" ScriptType="other" Path="relative"
location="~/Portals/_default/Containers/Dixit/js/jquery.isotope.min.js" name="isotope" Order="e_Default" runat="server" />
<dnn:JQUERY ID="sorting" ScriptType="other" Path="relative"
location="~/Portals/_default/Containers/Dixit/js/sorting.js" name="sorting" Order="e_Default" runat="server" />
<dnn:JQUERY ID="migrate" ScriptType="other" Path="relative"
location="~/Portals/_default/Containers/Dixit/js/jquery-migrate-1.1.0.js" name="migrate" Order="e_Default" runat="server" />
<script type="text/javascript" src="<%= ContainerPath %>js/jquery.isotope.min.js"></script>
<script type="text/javascript" src="<%= ContainerPath %>js/sorting.js"></script>
<script type="text/javascript" src="<%= ContainerPath %>js/jquery-migrate-1.1.0.js"></script>
<div id="ContentPane" runat="server">
</div>
<div class="clear">
</div>