Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 14, 2012 19:32
Show Gist options
  • Save MilkZoft/1612615 to your computer and use it in GitHub Desktop.
Save MilkZoft/1612615 to your computer and use it in GitHub Desktop.
code.jobs - Hello World - jQuery
<!DOCTYPE html>
<html>
<head>
<title>jQuery Hello World</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
$("#world").html("This is Hello World by JQuery");
});
</script>
<div id="world"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment