Drupal.behaviors.roblib_search_solr_site= { attach: function(context, settings) { url = settings.roblib_search_solr_site.search_url; jQuery.getJSON(url, function(data) { var items = []; if(data.length < 1){ jQuery('#' + 'roblib-search-content-solr-site').empty().append('No Results'); } else { jQuery.each(data.response.docs, function(key, val) { items.push('
'); items.push('
'); items.push('' + val.label + ''); items.push('
') items.push('
'); }); } jQuery('#roblib-search-content-solr-site').empty().append(items.join('')); }); } }