Skip to content

Instantly share code, notes, and snippets.

@erikvold
Created November 1, 2010 06:57
Show Gist options
  • Save erikvold/657742 to your computer and use it in GitHub Desktop.
Save erikvold/657742 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @id [email protected]
// @name GM_safeHTMLParser Test
// @namespace test
// @include *
// @author Erik Vergobbi Vold <[email protected]>
// @license MIT
// ==/UserScript==
GM_xmlhttpRequest({
method: "GET",
url: "http://erikvold.com/",
onload: function(response) {
var doc = GM_safeHTMLParser(response.responseText);
alert(doc.getElementById("hcard-Erik-Vergobbi-Vold").innerHTML);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment