Skip to content

Instantly share code, notes, and snippets.

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