I am using this bit of jQuery code to get href of the link:
var url = $(this).attr(\'href\');
-- and this bit of code to go to that href:>
Question: How can I open the href in the new window or tab with jQuery?
var url = $(this).attr('href').attr('target','_blank');