Skip to content

Instantly share code, notes, and snippets.

@salsalabs
Last active January 22, 2020 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salsalabs/02a6a0401ad50a71ee4e785a94fc5c24 to your computer and use it in GitHub Desktop.
Save salsalabs/02a6a0401ad50a71ee4e785a94fc5c24 to your computer and use it in GitHub Desktop.
Change the description for the optional groups on an Classic event page.
<script type="text/javascript">
(function($) {
$(document).ready(function() {
if (window.location.href.indexOf('event_KEY=89503') != -1) {
var e = $('#regForm2 > strong:nth-child(21)');
if (e.length > 0) {
e.html('Add me to the email subscriptions below to be notified of important alerts:');
}
}
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment