Skip to content

Instantly share code, notes, and snippets.

@jhorsman
Created December 5, 2013 08:18
Show Gist options
  • Save jhorsman/7801855 to your computer and use it in GitHub Desktop.
Save jhorsman/7801855 to your computer and use it in GitHub Desktop.
Hello World! In jQuery
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
</script>
<script>
$(document).ready(function(){
$("#label").text("Hello world!");
});
</script>
</head>
<body>
<p>This message is brought to you by jQuery</p>
<p id="label"></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment