Skip to content

Instantly share code, notes, and snippets.

@Himenon
Created September 8, 2015 13:11
Show Gist options
  • Save Himenon/6a91b5074a7c1c28bef0 to your computer and use it in GitHub Desktop.
Save Himenon/6a91b5074a7c1c28bef0 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$(function() {
$("h1").css('color', 'red');
});
</script>
</head>
<body>
<h1>Hello jQUery!</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment