Created
November 24, 2013 16:08
-
-
Save kitmenke/7628773 to your computer and use it in GitHub Desktop.
Example for making an AJAX call against SharePoint 2013's REST API using jQuery
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
$.ajax({ | |
dataType: "json", | |
accepts: { "json":"application/json;odata=verbose"}, | |
url: "/timetracking/_api/web/lists/getByTitle('Timesheet Entries')/items" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment