Strike Through

I do not know how to code but I want to strike through a text box “text 38” on my site. Can anyone write this code or point me to a resoruce?

Thanks!
Brandon

Assuming you want this to happen on page load:

$w.onReady(function () {
    $w('#text38').html = `<s>${$w('#text38').html}</s>`;
} );

Awesome!! Thank you!