Skip to content

Instantly share code, notes, and snippets.

@IgorGavrilenko
Created December 14, 2016 09:55
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 IgorGavrilenko/bc53234dc439bad6e44b0c58eced88ea to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/bc53234dc439bad6e44b0c58eced88ea to your computer and use it in GitHub Desktop.
radio
$('.parent').on('click', function() {
$('.parent').removeClass('is--checked');
$(this).find('.radio').prop("checked", true);
$(this).addClass('is--checked');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment