Advertisement
Trigub_Ilia

Заменить текст на странице JS

Aug 1st, 2022
1,094
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setTimeout(function() {
  2.     $('body :not(script)').contents().filter(function() {
  3.         return this.nodeType === 3;
  4.     }).replaceWith(function() {
  5.         return this.nodeValue.replace('сделок','обращений');
  6.     });
  7.  
  8.     $('body :not(script)').contents().filter(function() {
  9.         return this.nodeType === 3;
  10.     }).replaceWith(function() {
  11.         return this.nodeValue.replace('сделки','обращения');
  12.     });
  13. }, 1000);
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement