import $ as jquery code example
Example 1: javascript import jquery
//add this line somewhere in the html
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
Example 2: how to import jquery modular
<script type="module">
import $ from "./jquery/src/jquery.js";
$('#message').text('Hi from jQuery!');
</script>