title | function | web_service | web_service_operation |
---|---|---|---|
WebUrlFromPageUrl |
$().SPServices |
Webs |
WebUrlFromPageUrl |
var thisWeb;
$().SPServices({
operation: "WebUrlFromPageUrl",
pageURL: ((location.href.indexOf("?") > 0) ? location.href.substr(0, location.href.indexOf("?")) : location.href),
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function() {
thisWeb = $(xData.responseXML).find("WebUrlFromPageUrlResult").text();
}
});