Some improvement

in
Subscribe to Some improvement 2 posts, 2 voices



Nemo 64 Scriptwright
ChromeX11

Even though it's most likely unnecessary, you can use the javascript Event onDOMNodeInserted to watch if someone clicked on Load More or more/other items appeared out of any other reason.
You use jQuery so the syntax would be something like this:
$("body").bind("DOMNodeInserted", function (e) {

// will be called when a Node has been added to the body
// but only once if many items are added at once
// you could also give a div or something for a smaller range

$(e.target); // the Element that was added
});

ps.: thanks for advertising your script in my scripts forum... oÔ I updated it now xP

 
WASDx Script's Author
ChromeX11

Thanks, didn't know you could do that with javascript. I may implement it some time even though it's not a big issue as you say.

Right now I'm not even using my own script. I found this that actually brings back the old startpage: http://userscripts.org/scripts/show/120098