search.js 323 B

1234567891011
  1. window.addEvent('domready', function() {
  2. ykill.api('/search' + document.location.search, function(results) {
  3. var corps = $('corps');
  4. results.corporations.each(function(corp) {
  5. corps.grab(new Element('a', {
  6. 'html': corp.corporation_name,
  7. 'href': '/corporation/' + corp.corporation_id,
  8. }));
  9. });
  10. });
  11. });