I'm writing some HTML code with ElectronJS. I need to use JQuery within HTML, so I installed JQuery with npm install jquery
.
But what file should I import to use JQuery?
<!DOCTYPE html>
<html lang="en">
<head>
<script src="??"></script>
<script>
$(document).keydown(function(event) {
alert(event.which)
})
</script>
</head>
<body>
foobar
</body>
</html>
In <script src="??">
what should I write?
(Sorry for poor English)