Skip to content

Instantly share code, notes, and snippets.

@GrantDarling
Last active March 28, 2023 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GrantDarling/4d6443d14f3b11fb6c3e92ad4420ebc4 to your computer and use it in GitHub Desktop.
Save GrantDarling/4d6443d14f3b11fb6c3e92ad4420ebc4 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>jQuery Hello World</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function () {
$('#container').html('Hello World!');
});
</script>
<div id="container"></div>
</body>
</html>
@Akash1507-19
Copy link

hello

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment