Is there a way to eliminate a specific case-sensitive word from a fully loaded webpage? The word in question is "Posts" and it appears within a div called #pd_top_rated_holder that is generated by Javascript.
The Javascript code is sourced externally, so making direct changes to it is not an option. I also prefer not to customize a plugin just to host the Javascript locally.
I attempted the following method without success:
<script type="text/javascript">
$('#pd_top_rated_holder').text($('#pd_top_rated_holder').text().replace('Posts',''));
</script>