Last active
December 15, 2015 21:09
-
-
Save vman/5323468 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($){ | |
$(document).ready(function(){ | |
// Ensure that the SP.UserProfiles.js file is loaded before the custom code runs. | |
SP.SOD.executeOrDelayUntilScriptLoaded(loadUserData, 'SP.UserProfiles.js'); | |
}); | |
var userProfileProperties; | |
function loadUserData(){ | |
//Get Current Context | |
var clientContext = new SP.ClientContext.get_current(); | |
//Get Instance of People Manager Class | |
var peopleManager = new SP.UserProfiles.PeopleManager(clientContext); | |
//Get properties of the current user | |
userProfileProperties = peopleManager.getMyProperties(); | |
clientContext.load(userProfileProperties); | |
//Execute the Query. | |
clientContext.executeQueryAsync(onSuccess, onFail); | |
} | |
function onSuccess() { | |
alert(userProfileProperties.get_displayName()); | |
} | |
function onFail(sender, args) { | |
alert("Error: " + args.get_message()); | |
} | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment