New page getting inlined in the tab.

I am using tabbar and have several tabs in my application.
There are urls in one of the tabs content. When I click on the url it opens the new page within the same tab.
Whereas I want to open the new page in the same window where my application is running. How can this be done?

The links, which are clicked inside iframes, will be opened in this iframe.

Therefore, you may use “ajax-html” mode instead of “iframes” or process link clicks manually (to set onclick event for links instead of href attributes).

Thanks Alexandra, I did use “ajax-html” but it did not help. However I wrote a separate onclick method and it worked.