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
You could do this (which lets the users browser decide whether to open a new window or tab)
$('a').live('click', function() { window.open($(this).attr('href')); return false; });