Trying to replace Your Price with Discount price on this page, what am I doing wrong?
<script type="text/javascript">
$(document).ready (
function() {
$("td:contains('Your Price:')").text("Discount Price:");
}
);
</script>
Thanks!
this should work for that website, just include that inside the document ready
http://jsfiddle.net/uTJbu/
or