I\'m writing a Greasemonkey user script, and want the specific code to execute when the page completely finishes loading since it returns a div count that I want to be displ
Greasemonkey (usually) doesn't have jQuery. So the common approach is to use
window.addEventListener('load', function() { // your code here }, false);
inside your userscript