GochiSiyan

change login link

May 11th, 2022
904
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. (function() {
  2. document.querySelectorAll('.jeg_accountlink').forEach(function(el) {
  3. setTimeout(function() {
  4. el.innerHTML = el.innerHTML;
  5. }, 500);
  6. });
  7. document.querySelectorAll('.jeg_popuplink[href="#jeg_loginform"]').forEach(function(el) {
  8. el.setAttribute('href','MY_ACCOUNT_LINK');
  9. });
  10. document.querySelectorAll('.jeg_popuplink[href="#jeg_registerform"]').forEach(function(el) {
  11. el.setAttribute('href','MY_REGISTER_LINK');
  12. });
  13. })();
Advertisement
Add Comment
Please, Sign In to add comment