There is a trick you could use. If your jQuery version is the second one that is loading, you need to go to the security of your version first before downloading it, something like this
<script type="text/javascript">
(function($){
var theirs_jquery = $;
})(jQuery);
</script>
Then add the jQuery version of the script include version
<script src="link/to/my/jquery.js"></script>
<script src="link/to/my/jquery/plugins/plugin1.js"></script>
<script src="link/to/my/jquery/plugins/plugin2.js"></script>
then add another script block followed by
<script type="text/javascript">
(function(){
var $$ = jQuery;
var $ = theirs_jquery;
})(jQuery);
</script>
after that you can access your version of jquery with $$ shortcut
source
share