Running FF11 and the latest GM I cannot get even the most basic
GM_xmlhttpRequest to trigger onload, onerror or any other events, e.g.

window.alert("before");
var obj = GM_xmlhttpRequest({
  method: "GET",
  url: "http://www.example.com/";,
  onload: function(response) {
   window.alert("loaded");
  }
});
window.alert("after");

shows "before" and "after" but not "loaded".  The network trace shows
that the request is executed and the resource fetched successfully,
and with sync: true the response object is populated, only events
never fire.

--
Klaus Johannes Rusch
[email protected]
http://klausrusch.atmedia.net/

-- 
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