0
votes
0answers
14 views

Ajax request causes error (GM_xmlhttpRequest)

The following piece of code causes this error: Error: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) GM_xmlhttpRequest({ method:'POST', url:url, data:data, ...
0
votes
1answer
70 views

GM_xmlhttpRequest's responsetext is missing some HTML

If I go to this Google Maps page, some of the HTML is missing in View Source, but shows up in Firebug. Likewise, when that same URL is passed to my function, the following HTML does not show up in ...
0
votes
1answer
92 views

Why is GM_xmlhttpRequest ignoring its data parameter?

According to its documentation, GM_xmlhttpRequest should be able to take a data parameter as part of its argument. However, I can't seem to get it to work. I have a simple server that echoes the ...
1
vote
2answers
210 views

How to find the request-URL from inside Greasemonkey's GM_xmlhttpRequest “onload” callback in case of 302 redirect?

I have a GM_xmlhttpReqeust function setup as follows (simplified version) in my Greasemonkey script. GM_xmlhttpRequest({ synchronous: false, method: "HEAD", url: ...
1
vote
1answer
111 views

Greasemonkey AJAX return's abort() is not a function?

Basically, I try to send a request via the GM_xmlhttpRequest() Greasemonkey API and abort it. Here is a demo script: // ==UserScript== // @name example // @namespace ...
0
votes
1answer
248 views

Greasemonkey AJAX post does not appear to work, even with @grant specified

My script does not work. The AJAX call is not happening. Why? // ==UserScript== // @name prova // @namespace http://blogpagliaccio.wordpress.com/ // @description prova // @include ...
2
votes
1answer
174 views

GM_xmlhttpRequest does not work when called from inside $(document).ready()?

This is my GM_xmlhttpRequest script: // ==UserScript== // @name test // @namespace test // @include http://stackoverflow.com/* // @version 1 // ==/UserScript== GM_xmlhttpRequest({ ...
-1
votes
2answers
236 views

“getElementById not a function” when trying to parse an AJAX response?

I'm running GM_xmlhttpRequest (in a Greasemonkey script) and storing the responseText into a newly created HTML element: var responseHTML = document.createElement('HTML'); ... onload: function() { ...
0
votes
1answer
74 views

How to find out where greasemonkey access violation is triggered

Access violations in GM API I have a rather large script which collects data from a website I use and sends it to my own mysql database for in depth analysis. I have recently had to start using the ...
2
votes
1answer
3k views

How to fix __exposedProps__ error on Greasemonkey (GM_xmlhttpRequest)?

I have written my first script for Greasemonkey, it is working great, except that it is returning exposedProps error in each page it is working on. I already fixed all other errors but this one is ...
1
vote
1answer
580 views

confirm() JavaScript popup within GreaseMonkey scripts don't work properly

I think I may have encountered a GreaseMonkey's bug, but before reporting I want to make sure if anyone else has a similar problem, or whether I'm doing something wrong. The code is very simple: var ...
2
votes
1answer
147 views

GM_xmlhttpRequest inside WHILE loop

I have a fairly simple task to replace specif texts on a page. Say, there are 10 DIVs, each of which containing a specific information. I want to check this information against a database, and replace ...
0
votes
2answers
642 views

How to call GM_xmlhttpRequest within a webpage?

I need to call a cross domain GM_xmlhttpRequest which would be triggered by an event in the webpage. How do I access the functions within the greasemonkey sandbox, from the webpage?
0
votes
0answers
242 views

Greasemonkey xmlhttpRequest error

I am trying to code a greasemonkey script. But I think there is a problem with my xmlhttpRequest function.I am new at this xmlhttpRequest thing and I can't find the problem. When I load the page ...
1
vote
1answer
303 views

GM_xmlhttpRequest responseText empty in Firefox but perfect in Chrome

I'm trying to do a userscript for Chrome and Greasemonkey in Firefox. I'm using the GM_xmlhttpRequest since it supposed to work in both platforms. The request code seems to work in both browsers, but ...
1
vote
0answers
249 views

GreaseMonkey: Synchronous GM_xmlhttpRequest acting asynchronously

I'm trying to get a GM_xmlhttpRequest call to behave synchronously, but I can't get it to work like I expect: function myFunction(arg) { var a; GM_xmlhttpRequest({ method:"GET", ...
0
votes
0answers
196 views

GM_xmlhttpRequest loses data in jQuery .each() statement

I've some pages with URL like this: www.example.com/index.php?id={a number} and each page has the same <select> element: <select id="foo"> <option value="1">Page1 <option ...
2
votes
4answers
2k views

How to make synchronous AJAX calls in greasemonkey?

I have a list of URLs and need to load each page, one after another. This is my main function that i have in my Mind. mainFunction() { loop { // Loop through URL list oPage = func1(URL); //Get ...
1
vote
1answer
229 views

How to get a serialized array from a client form to a server using the GM_xmlhttpRequest

I used JQuery.serializeArray() on a form to create an array of objects on a GreaseMonkey application: [ { name: a value: 1 }, { name: b value: 2 }, { name: c value: ...
0
votes
1answer
398 views

GM_xmlhttpRequest - triggers on Parent and Iframe windows - should only trigger on Parent window

I am building a GreaseMonkey test script that makes a GM_xmlhttpRequest each time a specific site is visited. GM_xmlhttpRequest should only trigger on the first "document" found (the parent window) ...
2
votes
1answer
362 views

Is there a way to pass a value TO GM_xmlhttprequest?

As indicated here: How can I return a value from GM_xmlhttprequest? I have a script that is asynchronous. I would like to pass a value INTO this function so that when the onload function is called ...