Skip to content

Instantly share code, notes, and snippets.

@ultra00
Created August 29, 2013 08:22
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 ultra00/6375541 to your computer and use it in GitHub Desktop.
Save ultra00/6375541 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>js sample</title>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready( function() {
$("input:button").click(function(){
alert('hello world!');
});
});
</script>
</head>
<body>
<input type="button" value="テスト" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment