Hi Sam,

thanks a lot. Is there a way to fish the urls in the html (seen as string)
and insert them by some code like


var img = document.createElement('img');
        img.id = 'greasemonkey was here :)';
        img.src = (some var containing the image[i]  url);
        var Foo = document.getElementById('thumb0');
        Foo.parentNode.insertBefore(img, Foo);

thanks, Bernard


At this point in time userscripts cannot execute early enough to prevent
other scripts from doing their work first.  All you can do is clean up the
images after they are loaded or try to develop an extension which may allow
you to modify the page as it's downloaded.


-- 
View this message in context: 
http://old.nabble.com/Need-help-with-script-tp29972889p29973795.html
Sent from the GreaseMonkey List mailing list archive at Nabble.com.

-- 
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/greasemonkey-users?hl=en.

Reply via email to