I need to update a specific phone number within a paragraph without accessing the code inside the body myself. It has been provided by our partner and I am unable to modify it directly.
If you would like to explore different options, please reach out to a lodging specialist at 866.264.1842.
My attempted solution was:
$("body").html(
$("body").html().replace(/866.264.1842/g,'888.888.4754') );
Although this method successfully changed the phone number, it caused issues with other aspects of our page such as the calendar picker. Is there a CSS-only solution to achieve this task since I have access to the CSS but not the JS running on the page?