Skip to content

Instantly share code, notes, and snippets.

@ukyo
Created March 6, 2013 17:13
Show Gist options
  • Select an option

  • Save ukyo/5101042 to your computer and use it in GitHub Desktop.

Select an option

Save ukyo/5101042 to your computer and use it in GitHub Desktop.
jQueryでcheckboxでval()したい ref: http://qiita.com/items/0f0004c35a4d14c09d40
$('#checkbox').val();
$.valHooks.checkbox || $.valHooks.checkbox = {};
$.valHooks.checkbox.get = function(elem) {
return $(elem).is(':checked');
};
$.valHooks.checkbox.get = function(elem) { return !!elem.checked; };
$.valHooks.checkbox.set = function(elem, value) { elem.checked = !!value; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment