match-pixel-wp.js 222 Bytes

function getLocationsForMatchedTermsInWholeBody(msg)
{
    debugger;

    self.postMessage({ 'value': msg });

}

self.onmessage = function (e) {
    getLocationsForMatchedTermsInWholeBody(e.data.candata);
}