Hello,

After last firefox update to version 31 (and greasemonkey 2.0), I have 
problem with my script. On version 30 and greasemonkey 2.0 it worked fine.


I have a website using ajax by jQuery like this:

$.get('any_url_from_the_same_domain');


I created greasemonkey script like this (specified function with alert() 
should intercept ajax requests):

var myHandler = exportFunction(function() { alert('test'); }, unsafeWindow);
unsafeWindow.$(unsafeWindow.document).ajaxSuccess(myHandler);


exportFunction() gives me an error: *Error: CloneNonReflectorsWrite error.* 
The code from jQuery which causes that is:

c.handler.apply(a.elem, g);


All variables are correctly defined and I have no idea why that throws 
error. On firefox 30 it was working, right after update upto 31 - not. Any 
suggestions?

Regards, Kamil

-- 
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/greasemonkey-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to