Guest User

Untitled

a guest
Sep 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function getItems(url) {
  2. return $.ajax({
  3. url: _spPageContextInfo.webAbsoluteUrl + url,
  4. type: "GET",
  5. headers: {
  6. "accept": "application/json;odata=verbose",
  7. }
  8. });
  9. }
  10.  
  11. getItems( "/_api/Web/Lists/GetByTitle('<list title>')/Items" ).done(function(data){
  12.  
  13. var numofItems = data.d.results.length;
  14. $("#<div id>").append("<b>" + numofItems + "</b>");
  15. });
Add Comment
Please, Sign In to add comment