```html
<script type="module">
- import { $ } from "https://code.jquery.com/jquery-@VERSION.min.js";
+ import { $ } from "https://code.jquery.com/jquery-@VERSION.module.min.js";
</script>
```
```html
<script type="module">
- import { jQuery } from "https://code.jquery.com/jquery-@VERSION.min.js";
+ import { jQuery } from "https://code.jquery.com/jquery-@VERSION.module.min.js";
</script>
```
```html
<script type="module">
- import $ from "https://code.jquery.com/jquery-@VERSION.min.js";
+ import $ from "https://code.jquery.com/jquery-@VERSION.module.min.js";
</script>
```
```html
<script type="module">
- import { $ } from "https://code.jquery.com/jquery-@VERSION.slim.min.js";
+ import { $ } from "https://code.jquery.com/jquery-@VERSION.module.slim.min.js";
</script>
```
<script type="importmap">
{
"imports": {
- "jquery": "https://code.jquery.com/jquery-@VERSION.min.js",
- "jquery/slim": "https://code.jquery.com/jquery-@VERSION.slim.min.js"
+ "jquery": "https://code.jquery.com/jquery-@VERSION.module.min.js",
+ "jquery/slim": "https://code.jquery.com/jquery-@VERSION.module.slim.min.js"
}
}
</script>