﻿$(document).ready(function() {
	$().SPServices.SPScriptAudit({
		webURL: "",					// [Optional] The name of the Web (site) to audit
		listName: "",				// [Optional] The name of a specific list to audit. If not present, all lists in the site are audited.
		outputId: "WSOutput",		// The id of the DOM object for output
	// What to audit
		auditForms: true,			// Audit the form pages
		auditViews: true,			// Audit the view pages
		auditPages: true,			// Audit the Pages Document Library
		auditPagesListName: "Demo Pages",	// The Pages Document Library, if desired
	// What to show
		showHiddenLists: false,		// Show output for hidden lists
		showNoScript: false,		// Show output for lists with no scripts (effectively "verbose")
		showSrc: true				// Show the source location for included scripts
	});
});