Core

These are the low-level functions that allow SPServices to work its magic. Leverage them to interact directly with SharePoint’s web services.

Function Name Short Description Introduced
$().SPServices This is the core function of the library, which you can use to make Ajax calls to the SharePoint Web Services. Note: As of version 2013.01, all calls return a jQuery deferred object aka a promise. 0.2.3
$().SPServices.defaults With this defaults function, you can set the defaults for the remainder of the page life. This can be useful if you’d like to make many calls into the library for a single list or site. 0.2.4
$().SPServices.Version Returns the current version of SPServices as a string, e.g. “0.7.2” 0.7.2

Back to top