Skip to content

Instantly share code, notes, and snippets.

View onequbit's full-sized avatar

Alfred Aquino onequbit

  • Northern Virginia
View GitHub Profile
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Fireworks!</title>
</head>
<style>
body {
background-color: #000000;
margin: 0px;
@onequbit
onequbit / ListUtilities.js
Created November 20, 2019 02:42
SharePoint REST API code snippets
function getItemsREST(RESTurl)
{
var deferred = $.Deferred();
// console.log(url);
var result = "";
var ajaxCall = {
url: _spPageContextInfo.webAbsoluteUrl + RESTurl,
type: "GET",
headers: {
"accept": "application/json;odata=verbose",