Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <script>
  2. jQuery( document ).ready(function() {
  3. jQuery('.class').each(function(){
  4. let thisMeta = jQuery(this).html();
  5. thisMeta = thisMeta.replace(/Posted by/,'by');
  6. jQuery(this).html(thisMeta);
  7. });
  8. });
  9. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement