I am trying to develop a jquery based dynamic tabs following this blog. And it works greatly, on click of a left hand side menu item it is opening a new tab. But if i want to open a tab on click of the link content from a tab, then i am being unable to create a new tab. Basically the linked page is getting overloaded on the same tab.
For the same i have uploaded my html code and jquery code in jsfiddle.
On the result panel of the jsfiddle we can see the menu structure. On click of the menu item it will open a tab, say a tab is being opened containing contents of index.html
Now if in the index.html i add a link, on click of which i want open another tab and there lies the dragon for me. The contents of the tab is getting changed, but everything on the same vary tab from which the link was clicked.
<a href="anotherPage.html">Click Here to Open another Tab</a>
Any suggestions how to create the tab on click of the link from a tab.