I add a custom JavaScript file with the following code:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
<head>
<link src="VendorNamespace_Module::someJs.js"/>
</head>
</page>
My problem is that this js file requires jQuery, but it is loaded before the jQuery JavaScript file (when I look at the head section of my html, jQuery.js comes after someJs.js). How can I change this order so that my file is loaded afterwards?
1 Answer 1
You don't need to change the order. you just have to declare that your script depends on jquery.
Make your someJs.js file look like this
define([
'jquery'
//you can add here any other dependencies you have
], function($) {
...your file content here
});
[EDIT]
If the js is from an source you cannot modify, like a third party module you can just create your own module that contains a js file with this content
require([
'jquery',
'VendorNamespace_Module/someJs'
]);
then include that file in the layout instead of VendorNamespace_Module/someJs.js.
This should load jquery before the vendor js.
But on the side note...if you got a third party module that has a js file that does not start with require or define then it might be something wrong with the module.
-
What if this file comes from some module that is a composer dependency and I can not edit it? Or what would be if it comes from some external resource?bpoiss– bpoiss2016年02月18日 12:07:34 +00:00Commented Feb 18, 2016 at 12:07
-
you got me here. I don't know yet how to do this. If I find something I will let you know.Marius– Marius2016年02月18日 12:11:28 +00:00Commented Feb 18, 2016 at 12:11
-
Thank you. If you take a look at rearrange elements in this docs: devdocs.magento.com/guides/v2.0/frontend-dev-guide/layouts/… maybe it is possible to get this working with the
move? But I don't know if there are containers for that.bpoiss– bpoiss2016年02月18日 12:13:43 +00:00Commented Feb 18, 2016 at 12:13 -
See my edit. Maybe it helps.Marius– Marius2016年02月18日 12:20:31 +00:00Commented Feb 18, 2016 at 12:20
-
Not exactly what I am looking for, but seems to be a safe workaround for me.bpoiss– bpoiss2016年02月19日 09:57:50 +00:00Commented Feb 19, 2016 at 9:57
Explore related questions
See similar questions with these tags.