My first dabble with JQuery. I wish to replace the delivery charge on checkout page from £0.00 to TBC (To Be Confirmed)
I have attempted this in a console in Chrome. With no success:
$( ".deltotal" ).replaceWith( "TBC" );
This is the field I am trying to change:
<td class="deltotal">£100.00</td>
I assume when I reach the right code I need to put the script at the footer of the checkout.tpl page?
$( ".deltotal" ).text("TBC")