Skip to content

Instantly share code, notes, and snippets.

@msng
Last active December 12, 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 msng/4729246 to your computer and use it in GitHub Desktop.
Save msng/4729246 to your computer and use it in GitHub Desktop.
HTML の submit ボタンが押されたら disabled にする (要 jQuery)
<script type="text/javascript">
$('form').submit(function() {
$(this).submit(function () {
return false;
});
});
</script>
@msng
Copy link
Author

msng commented Feb 18, 2013

IE6 と IE8 での不具合報告あり。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment