You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem related to the use of jQuery and Metro 4.3
If I use it like this: <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="https://cdn.metroui.org.ua/v4/js/metro.min.js"></script>
I can't open dropdown menus from appbar, the console shows: error and Script error. (line 0)
And if I call Metro first, like this: <script src="https://cdn.metroui.org.ua/v4/js/metro.min.js"></script> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
The appbar works but I can't get Metro objects with $(elem).data("component") , as the result is: undefined
I have a problem related to the use of jQuery and Metro 4.3
If I use it like this:
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdn.metroui.org.ua/v4/js/metro.min.js"></script>
I can't open dropdown menus from appbar, the console shows:
error
andScript error. (line 0)
And if I call Metro first, like this:
<script src="https://cdn.metroui.org.ua/v4/js/metro.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
The appbar works but I can't get Metro objects with
$(elem).data("component")
, as the result is:undefined
Here's an example: https://jsbin.com/vekomol/edit?html,js,console,output
The text was updated successfully, but these errors were encountered: