Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.25 KB | None | 0 0
  1. <script>
  2.       jQuery(document).ready(function($) {
  3.             oldhtml = $('div.this-is-class').find('span').html();
  4.             var newhtml = oldhtml.replace(/0/g, "");
  5.             $('div.this-is-class').find('span').html(newhtml);
  6.       });
  7.   </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement