HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Target_Blank 1.1

This plugin forces links to open in New Tab/New Window via blank_page

You can add more links that you want to open in a new window by adding them in the tb.js file. Below are some examples of other links that could be opened in a new window. Or to be made to open in the same window.

$('#Menu li:first > a').attr('target', '_blank'); 
$('.MessageList a').attr('target', '_blank'); 
$('#Foot a').attr('target', '_blank'); 
$('.AptAdImg a').attr('target', '_blank'); 
$('.Attachment a').attr('target', '_blank'); 
$('.Meta a').attr('target', '_self'); 

Questions