I get conflicting and confusing information on how to get jQuery to work on a custom module and it's frustrating to figure out what's the best and correct way.
Some say that you have to use:
DotNetNuke.Framework.jQuery.RequestRegistration()
Some say to use the Client Resource Management framework:
<dnn:DnnJsInclude runat="server" FilePath="jquery.cycle.min.js" PathNameAlias="SkinPath" /> (why not the jquery.min.js?)
Some say just to put these lines on the view.ascx:
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css" />
What's the best way to do this if all of my modules are using the same version of jQuery?