Created
December 5, 2013 08:18
-
-
Save jhorsman/7801855 to your computer and use it in GitHub Desktop.
Hello World! In jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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