From a performance perspective, is it better to add attributes to the html *as* it is being built, zB:
- htmlBuilder += 'href=\"http://www.bigsurgarrapata.com\" target=\"_blank\"' . . .
...or via jQuery after the fact, like so (pseudoscript):
- $("a[href]^'http://'").attr('target', '_blank');
?