Someone purchsed a

  • Copyright 2022, The Scaffold Warehouse. All Rights Reserved.

'); link.append('
'+ item.title +'
' + item.newprice + '' + item.oldprice + '
'); link.wrap('
  • '); resultsList.append(link.parent()); }); // The Ajax request will return at the most 10 results. // If there are more than 10, let's link to the search results page. if(data.results_count > 10) { resultsList.append('
  • See all results (' + data.results_count + ')
  • '); } resultsList.fadeIn(200); } }); } }); }); // Clicking outside makes the results disappear. $('body').bind('click', function(){ $('.search-results').hide(); }); });