Advertisement
fauzanjeg

Remove   element in single-post

Jul 4th, 2021
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* Remove   element in single-post */
  2. (function () {
  3.     var el = document.querySelector('.single-post .jeg_main_content .content-inner');
  4.     el.innerHTML = el.innerHTML.replace(/ /g, ' ');
  5. })()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement