+ var url = s.attr('data-source');
+ s.search({source:
+ function(req, cb) {
+ $.ajax({url: url,
+ dataType: "jsonp",
+ data: { term: req.term },
+ type: "GET",
+ success: function(data) { cb(data); },
+ error: function() { cb([]); }
+ });
+ },
+ dataType: "jsonp",
+ host: "http://"+host});