Skip to content

Instantly share code, notes, and snippets.

@alexdioso
Created December 18, 2011 23:53
Show Gist options
  • Save alexdioso/1494860 to your computer and use it in GitHub Desktop.
Save alexdioso/1494860 to your computer and use it in GitHub Desktop.
BrowserID without jQuery
document.getElementById('loginbutton').addEventListener(
"click",
function(event) {
navigator.id.getVerifiedEmail(function(assertion) {
if (assertion !== null) {
alert("logged in");
} else {
alert("not logged in");
}
});
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment