Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created October 30, 2014 11:50
Show Gist options
  • Save fieldoffice/ee80d4c2830c1c0f4467 to your computer and use it in GitHub Desktop.
Save fieldoffice/ee80d4c2830c1c0f4467 to your computer and use it in GitHub Desktop.
Toggle text string on click
$('.link').click(function() {
$(this).text($(this).text() == 'Show Help' ? 'Hide Help' : 'Show Help');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment