Skip to content

Instantly share code, notes, and snippets.

@Pavracer
Created January 7, 2018 18:39
Show Gist options
  • Select an option

  • Save Pavracer/2416763cb0e3ec9646d5ffb7ba75c1d5 to your computer and use it in GitHub Desktop.

Select an option

Save Pavracer/2416763cb0e3ec9646d5ffb7ba75c1d5 to your computer and use it in GitHub Desktop.
<script>
jQuery( document ).ready(function() {
jQuery('.et_pb_counter_amount_number').each(function(){
let thisCounter = jQuery(this).text();
thisCounter = thisCounter.replace(/%/,' ');
jQuery(this).text(thisCounter);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment