Return to Snippet

Revision: 12154
at March 4, 2009 09:39 by dne


Initial Code
function addScript(url) {
   var script = document.createElement("script");
   script.src = url + '&t='+new Date().getMinutes();
   script.type = "text/javascript";
   document.getElementsByTagName("head")[0].appendChild(script);
}


function productSearch(version, applicationid, adspace, region, programs, minPrice, maxPrice, category, page, items, q, callback) {
     var url = 'http://api.zanox.com/json/' + version + '/products?applicationid=' + applicationid;
     if (adspace) url += '&adspace=' + adspace;
     if (region) url += '&region=' + region;
     if (programs) url += '&programs=' + programs;
     if (category) url += '&category=' + category;
     if (page) url += '&page=' + page;
     if (items) url += '&items=' + items;
     if (minPrice) url += '&minPrice=' + minPrice;
     if (maxPrice) url += '&maxPrice=' + maxPrice;
     if (callback) url += '&callback=' + callback;
     if (q) url += '&q=' + q;
     addScript(url);
}

Initial URL


Initial Description
Wraps Contextual Product Search of zanox Web Services

Initial Title
zanox Web Services contextual Product Search

Initial Tags
web, service

Initial Language
JavaScript