I cant seem to get the redirect script operational in my forum after posting Quick replies. I've submitted the code in each of the options; "In the Home Page">"Sub forums">"topics. I get redirected to the information page.
Code:
(function() {
for (var meta = document.getElementsByTagName('META'), i = 0, j = meta.length; i < j; i++) {
if (meta[i].httpEquiv && /refresh/i.test(meta[i].httpEquiv)) {
window.location.href = meta[i].content.replace(/^.*;url=/, '');
break;
}
}
}());
After entering a quick reply it directs to the information page.
Code:
(function() {
for (var meta = document.getElementsByTagName('META'), i = 0, j = meta.length; i < j; i++) {
if (meta[i].httpEquiv && /refresh/i.test(meta[i].httpEquiv)) {
window.location.href = meta[i].content.replace(/^.*;url=/, '');
break;
}
}
}());
After entering a quick reply it directs to the information page.
Last edited by Norton on March 30th 2016, 10:52 pm; edited 1 time in total