Was keen to take .SPScriptAudit for a test drive, so have created a new page on my site (SP Online (v 15.0.0.4455) and added the following into a Script Editor Web Part...
Am using SP Services 2014.01
Simon
Am using SP Services 2014.01
<!DOCTYPE html>
<head>
<title> Script Audit </title>
<script language="javascript" type="text/javascript" src="../js/common/current/jquery_current.js"></script>
<script language="javascript" type="text/javascript" src="../js/common/current/jquery.SPServices_current.js"></script>
<script>
$().SPServices.SPScriptAudit({
webURL: "",
listName: "",
outputId: "auditres",
auditForms: true,
auditViews: true,
auditPages: true,
auditPagesListName: "",
showHiddenLists: false,
showNoScript: false,
showSrc: true
});
</script>
</head>
<body>
<div id="auditres">Results here:</div>
</body>
</html>
I'm not getting any results returned. I don't now how commonly this function is used, but is there anything up with my script, or could it be a SP Online thing?Simon