summaryrefslogtreecommitdiff
path: root/docs/log/evtvwr.aspx_files/JobsSummaryRetriever.js
blob: 464629aa23cbc9e593a8ede9cb6a8f65be8a4bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2008, The Code Project. All rights reserved.

function RetrieveJobsSummary(divName, objectId, objectTypeId, countryId, attributesList) {
    var elm = $("div[id=" + divName + "]");
    if (elm&&elm.length > 0) {
        var queryString = "/Script/Jobs/Ajax/GetRelatedJobs.aspx?";
        queryString += "objId="    + objectId;
        queryString += "&typeId="  + objectTypeId;
        queryString += "&cntrId="  + countryId;
        queryString += "&atrList=" + attributesList;

        $(elm).load(queryString);
    }
}