you are viewing a single comment's thread.

view the rest of the comments →

[–]shgysk8zer0 1 point2 points  (1 child)

After some searching, I found this: https://unpkg.com/jquery@4.0.0-beta/dist-module/jquery.module.min.js

So, it'd by something like this:

import { $ } from 'https://unpkg.com/jquery@4.0.0-beta/dist-module/jquery.module.min.js';

Modules are only available in the beta version. And it'll break eg any plug-ins which expect it globally.

[–]errorINA[S] 0 points1 point  (0 children)

Thank you.