Created
August 18, 2012 12:57
-
-
Save giratikanon/3386674 to your computer and use it in GitHub Desktop.
jQuery starter file
This file contains 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
<html> | |
<head> | |
<!-- Include a Google-hosted version of the jQuery file on the next line --> | |
<script> | |
$(document).ready(function() { | |
// Write jQuery calls betwen the curly braces | |
}); | |
</script> | |
</head> | |
<body> | |
<p> | |
<input class="toggle-button" type="button" value="Click me!" /> | |
</p> | |
<img class="cat-picture" src="https://sphotos-b.xx.fbcdn.net/hphotos-snc7/484538_4126849363891_1780221891_n.jpg" /> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment