Skip to content

Instantly share code, notes, and snippets.

@beckettkev
Created July 24, 2015 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beckettkev/e28687487b08cea2b6ba to your computer and use it in GitHub Desktop.
Save beckettkev/e28687487b08cea2b6ba to your computer and use it in GitHub Desktop.
$.ajax({url: window.location.href.toLowerCase().split('pages')[0] + "_api/web/getFileByServerRelativeUrl('" + window.location.pathname + "')/checkOutType",
headers: { "Accept": "application/json; odata=verbose" },
success: function(data) {
if(data.d.CheckOutType === 0) {
console.log('The file is checked out');
} else {
console.log('The file is not checked out');
}
console.log(data.d.CheckOutType, 'data.d.CheckOutType');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment