Skip to content

Instantly share code, notes, and snippets.

@cfaulkingham
Created June 15, 2010 14:35
Show Gist options
  • Save cfaulkingham/439207 to your computer and use it in GitHub Desktop.
Save cfaulkingham/439207 to your computer and use it in GitHub Desktop.
// Original xmlhttpRequest using the Greasemonkey object.
//
GM_xmlhttpRequest({
'method': 'GET',
'url': url,
'onload': function (xhr) {
parseGetLength(queueIdx, xhr.responseText);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment