I have some links that are placed in my page dynamically via JSON and have no way to directly edit them. I want to force all links to open in new tabs, ala target=\"_b
target=\"_b
It's not working because the is not yet part of your page when $('a').attr("target","_blank"); is fired.
$('a').attr("target","_blank");