Skip to content

Instantly share code, notes, and snippets.

@n0bisuke
Last active December 20, 2015 06:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n0bisuke/6085533 to your computer and use it in GitHub Desktop.
Save n0bisuke/6085533 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>TAG index Webサイト</title>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(function(){
$('#reset').on('click', function() {
$("#hirano").text("hiranooooooooooooooooo");
});
});
</script>
<style type="text/css">
<!--
span {
color: #FF00FF;
font-size: 50px;
}
-->
</style>
</head>
<body>
<p id="hirano">ひらの<p>
<input type="submit" id="reset">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment