Is it possible to remove one case sensitive word from the completely loaded page? The word is “Posts” and it’s in a javascript generated div called #pd_top_rated_holder.
The javascript is pulled from off site and so I don’t have control over it, and I don’t want to modify a plugin to serve the js locally.
Tried this with no luck:
<script type="text/javascript">
$('#pd_top_rated_holder').text($('#pd_top_rated_holder').text().replace('Posts',''));
</script>
Try wrapping your code in ready handler:
If there are more than one instances of the string, you need to use regex to replace them all like this: