I've been looking for an answer to this too. I decided to approach the problem differently, I've added a class to all my anchor i want to open in the main window ("_top"), so now i have these anchors code like this in my dynamic content: <a href="htttp://www.mypage.com" class="anchor_top">this is my link</a> once i've saved this I've added a js code in the header part of the landing page (make sure you have jquery.js library there too) this is the code I'm using: $("a.a_top").attr("target","_top");
This does the trick. I hope it helps, good luck to everyone