>>17387446 PB
>On a different topic, reply-posting isn't working properly, and captcha isn't loading properly for thisanon. Not a newfag - been around since early 4Chan days.
A CoderAnon posted this handy code, enter into the JS box and voila! Reply posting works, anon saved both versions (long/short):
8-10-2022:
anons
i've written a hacky solution to the reply issue.
function replaceLinks() {
var links = document.querySelectorAll(".post_no")
for (let link of links) {
num = "#q" + link.textContent;
url = window.location.href.split('#')[0]
link.removeAttribute("onclick");
link.href= url + num
}
}
var t=setInterval(replaceLinks,1000);
paste that into your userjs in options;
slightly shorter version:
function replaceLinks() {
var links = document.querySelectorAll(".post_no")
for (let link of links) {
link.href= window.location.href.split('#')[0] + "#q" + link.textContent;
}
}
var t=setInterval(replaceLinks,1000);