Skip to content

Instantly share code, notes, and snippets.

@memememomo
Created May 19, 2010 23:49
Show Gist options
  • Save memememomo/407009 to your computer and use it in GitHub Desktop.
Save memememomo/407009 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>test</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
alert($("input#button").val());
$("input#button").val("変更後");
});
</script>
<body>
<input type="button" value="変更前" id="button">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment