specific text change by jquery
<script>
jQuery(document).ready(function($){
$(".review-link").text(function () {
return $(this).text().replace("customer reviews", "reviews");
});
});
</script>
jQuery(document).ready(function($){
$(".review-link").text(function () {
return $(this).text().replace("customer reviews", "reviews");
});
});
</script>
Comments
Post a Comment