Skip to content

Instantly share code, notes, and snippets.

@jimmysawczuk
Forked from jimrubenstein/gist:29941139fb00e98d6f69
Last active August 29, 2015 14:06
Show Gist options
  • Save jimmysawczuk/13d528046decd50d9e68 to your computer and use it in GitHub Desktop.
Save jimmysawczuk/13d528046decd50d9e68 to your computer and use it in GitHub Desktop.
function createOption($listItem, $input)
{
$listItem.on('click tap', function(evt)
{
var checked = $input.prop('checked');
$input.toggleProp('checked', !checked);
$listItem.toggleClass('selected', checked);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment