I would need to find and replace some text on my website (online store) using CS. Specifically, I need to find ,90
in price area and replace this with upper index <sup>90</sup>
. At the moment the price is displayed as follows:
39,90 Kč,
i want to be displayed:
39<sup>90</sup> Kč
I tried it according to the instructions
document.body.innerHTML.replace
unfortunately without success.