Thank you very much for you replay. I'm new to javascript and don't know a good way to delay my script. I tried using setInterval and found that some buttons on the webpage failed. I suspect whatever script I insert via GM, the webpage fails.
On Mar 7, 11:16 pm, Tei <[email protected]> wrote: > On 7 March 2012 06:15, Forrest <[email protected]> wrote: > > > There are some DOM elements created by the web page's jQuery script. I > > just add a css class for the body; the elements didn't show up. I > > guess my script stops the webpage's own script. > > > Anyway to fix this and let the original script continue? Thank u. > > You can program your script to run something after the original script > has finished. Also fix the cause of breakage. Perhaps the new class > you are adding to body is a name that the jquery script already want > to use for something else. if the script needs to do > $(".logo").something and expect that to run on a image, will break if > you add logo to body <body class="body">. > > -- > -- > ℱin del ℳensaje. -- 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.
