Skip to content

Instantly share code, notes, and snippets.

@technovangelist
Created March 23, 2012 14:07
Show Gist options
  • Save technovangelist/2170959 to your computer and use it in GitHub Desktop.
Save technovangelist/2170959 to your computer and use it in GitHub Desktop.
Get the email address of any logged in Squarespace user
$ ->
$.ajax
url:"/member/#{Squarespace.Constants.AUTHENTICATED_USER_LOGIN}"
success: (data) ->
email = $(data).find('#email').val()
console.log(email)
# do something more interesting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment