Guest User

Untitled

a guest
Feb 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <script>
  2.  
  3. jQuery( document ).ready(function() {
  4.  
  5. jQuery('.et_pb_button_module_wrapper').each(function(){
  6. var str = jQuery(this).find('a').html();
  7. var newstr = str.replace("<", "<");
  8. newstr = newstr.replace(">", ">");
  9. jQuery(this).find('a').html(newstr );
  10. });
  11.  
  12. });
  13.  
  14. </script>
Add Comment
Please, Sign In to add comment