Skip to content

Instantly share code, notes, and snippets.

@richerimage
Last active August 29, 2015 14:21
Show Gist options
  • Save richerimage/dc45b49194117fd377f1 to your computer and use it in GitHub Desktop.
Save richerimage/dc45b49194117fd377f1 to your computer and use it in GitHub Desktop.
replace_characters.js
<script id="replace_usd_for_stg">
jQuery(document).ready(function($) {
$(function() {
var selector = '.moonray-form-element-cart'; // use an id #if_you_can
var mystring = $(selector).html();
var output = mystring.replace(/\$/g, "£").replace(/\(USD\)/g, "\(STG\)");
$(selector).html(output);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment