Commit 404360ac by Patryk Czarnik

Pierwszy kod w jQuery

parent 199c74a6
<!DOCTYPE html> <!DOCTYPE html>
<html> <html xmlns:th="http://www.thymeleaf.org">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Strona główna</title> <title>Strona główna</title>
<script th:src='@{/jquery-3.7.1.min.js}'></script>
<script>
$(document).ready(() => {
alert('Heja!');
});
</script>
</head> </head>
<body> <body>
<h1>Witajcie w naszej apce</h1> <h1>Witajcie w naszej apce</h1>
<div id="hello"></div>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment