Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created August 13, 2014 18:19
Show Gist options
  • Save jlittlejohn/3cac0daf7db0207373fb to your computer and use it in GitHub Desktop.
Save jlittlejohn/3cac0daf7db0207373fb to your computer and use it in GitHub Desktop.
JS: Change Data Attribute of Element on Click
$(".btn").bind("click", function () {
$(this).attr('data-state', 'pressed');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment