Created
June 24, 2014 15:04
-
-
Save salsalabs/3d52164c4fd6470436c2 to your computer and use it in GitHub Desktop.
Javascript for https://salsasupport.zendesk.com/entries/45795544-Replace-total-signers-on-your-petition-page
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
| <script type="text/javascript"> | |
| // See https://salsasupport.zendesk.com/entries/45795544-Replace-total-signers-on-your-petition-page | |
| $(document).ready(function() { | |
| var t = $('.signerCount'); | |
| t.html(t.html().replace('total signers', 'WHATEVER YOU WANT')); | |
| }) | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment