Created
October 30, 2014 11:50
-
-
Save fieldoffice/ee80d4c2830c1c0f4467 to your computer and use it in GitHub Desktop.
Toggle text string on click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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