Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
Similar to DryDuck below, I wanted to get this script so that it works on vBull forums which are running the vBSEO url rewriter. vBSEO changes the urls for threads so that they're in the following format:
This did the trick: function findNextLink(doc)
{
for (var link,i=0; link=doc.links[i]; ++i)
if ((link.innerHTML == ">" || link.text == ">")
&& ( link.getAttribute("href").indexOf("showthread.php?") != -1
|| link.getAttribute("href").search(/d+\/page\d+\.html?$/) != -1 ) ) {
return link;
}
return null;
}
|
|
|
It works on Firefox 3 beta 5 pre. Thanks for a great script. |
|
|
This doesn't work on Firefox 3 beta 3 pre (Minefield). The iframe loads, but no content is copied, and the iframe is never deleted. |
|
|
@bobielawlintine: only a dirty solution from me. Change the value 2.5
document.documentElement.scrollTop) < (2.5 * window.innerHeight))) into 4.5 or anything higher. |
|
|
ttfn you should add page number at the end of each merged pages.. ----------
|
|
|
What should I edit to make this start auto-loading about half way down the page instead of the bottom? I use it for howard forums but it takes about two-three seconds for the next page to load, which kind of defeats the purpose of an autoloading script. How can I make it start autoloading sooner? I've no idea how the code works, so if anyone can tell me what to edit exactly I'd really appreciate it. Thanks in advance! |
|
|
Can anyone get it working for the inthemix forums? www.inthemix.com.au forum forumdisplay.php?f=45 |
|
|
This is really nice, thanks. |
|
|
I have made a small change to the findNextLink function to support www.direxplorers.com/gue-procedures/2846-offici... style links, here is the new version: function findNextLink(doc)
if ((link.innerHTML == ">" || link.text == ">") &&
return null;
|
|
|
Works great on Nobodylikesonions.com forums, once I grew a brain and added it to Included Pages... Awesome |
|
|
really nice mod!!! but the forum function of last post read works? |
|
|
This is a wonderful script. Works on several forums using vbulletin. Like lost-forum.com & the notebookreview.com forums. My favorite script probably. |
|
|
Doesn't work for dogsonacid.com? |