Created
October 30, 2017 20:40
-
-
Save clarknelson/417c011325a5c155aa765cb216d5dbd4 to your computer and use it in GitHub Desktop.
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
// store the element for later | |
// element === '<div>$9.99 USD/month</div>' | |
var $el = $(element); | |
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace | |
// http://regexr.com/3h2rl | |
var newText = $el.text().replace('/\/month/', '<span>/month</span>'); | |
// set the element to use the next text | |
$el.text(newText); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment