Skip to content

Instantly share code, notes, and snippets.

@igorpronin
Created August 16, 2015 17:16
Show Gist options
  • Save igorpronin/0a1edb796edace3bab44 to your computer and use it in GitHub Desktop.
Save igorpronin/0a1edb796edace3bab44 to your computer and use it in GitHub Desktop.
jQuery check and change attribute value on click
$("#click_tag").click(function() {
if ($("#target_tag").attr("attr_name")==("attr_value1")) {
$("#target_tag").attr("attr_name", "attr_value2");
} else {
$("#target_tag").attr("attr_name", "attr_value1");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment