I made a basic survey using SharePoint and I can't find how to get the question using SPServices.
I only know how to get the responses of the survey, using this code :
$().SPServices({
operation: "GetListItems",
webURL: "https://mysite.com/",
listName: "SurveyMobileSP",
CAMLQuery:"",
error: function (xhr, message, error) {
alert('Error : ' + error);
},
completefunc: function (xData, status) {
console.log('Status: '+status+' xdata: ' + 'RESPONSE: ' + xData.responseText);
});
});