search.js 359 B

1234567891011121314
  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.adopt(
  6. new Element('a', {
  7. 'html': corp.corporation_name,
  8. 'href': '/corporation/' + corp.corporation_id,
  9. }),
  10. new Element('br')
  11. );
  12. });
  13. });
  14. });