StarvingMartist@sh.itjust.works to Mildly Infuriating@lemmy.worldEnglish · 1 month agoFirestone email unsubscribe page isn't actually clickable so you can't unsubscribesh.itjust.worksimagemessage-square26fedilinkarrow-up1272arrow-down13file-text
arrow-up1269arrow-down1imageFirestone email unsubscribe page isn't actually clickable so you can't unsubscribesh.itjust.worksStarvingMartist@sh.itjust.works to Mildly Infuriating@lemmy.worldEnglish · 1 month agomessage-square26fedilinkfile-text
minus-squareunderisk@lemmy.mllinkfedilinkEnglisharrow-up8·1 month agosounds like contentEditable got triggered on one of the elements on the page. if you want to try and get around this before they fix it you can press F12 and paste this into your console: document.querySelectorAll("[contentEditable]").forEach(x=>x.contentEditable=false);
minus-squareStarvingMartist@sh.itjust.worksOPlinkfedilinkEnglisharrow-up4·edit-21 month ago document.querySelectorAll(“[contentEditable]”).forEach(x=>x.contentEditable=false); That worked, thanks homie I knew some of you would be nerdy enough to help me out
sounds like
contentEditable
got triggered on one of the elements on the page. if you want to try and get around this before they fix it you can press F12 and paste this into your console:document.querySelectorAll("[contentEditable]").forEach(x=>x.contentEditable=false);
That worked, thanks homie I knew some of you would be nerdy enough to help me out
np glad it worked.
Heroes of Lemmy