Trying to create a test project using this library does not work in principle, here’s the code for the index and script:
$(document).ready(function() { $("#button").click(function() { $("#demo").html("Hello, World!"); }); }); <!doctype html> <html lang="en"> <head> <title>Jquery Demo</title> </head> <body> <script type="text/javascript" src="js/jquery-3.3.1.js"></script> <script type="text/javascript" src="js/hi.js"></script> </body> </html> At the output instead of helovorld - a clean sheet, there are no errors in the console, the files are all in place ...
idbutton, which when clicked addsHello worldto an element withiddemo... - RTK