Illiterate
New Member
I just found out how I can link to a specific peace of anchor tag using ID assignment. And now I also need to know how I can link to an anchor inside a tab : Both from another tab(could be in the same page or on another) and from another page.The snippet of code relevant to this question comes below Please note that this does not work for tabs!!This is where I contain all imageshtml\[code\]<div class="container" id="tab4"><a href="http://stackoverflow.com/questions/14045162/.jpg" **id="tab**></a><a href="http://stackoverflow.com/questions/14045162/.jpg" **id="tab1**></a><a href="http://stackoverflow.com/questions/14045162/.jpg" **id="tab2**></a><a href="http://stackoverflow.com/questions/14045162/.jpg" **id="tab3**></a>\[/code\]And this is where I link to themhtml\[code\]<a href="http://stackoverflow.com/questions/14045162/1.html#tab"><img src="http://stackoverflow.com/questions/14045162/.jpg" /></a><a href="http://stackoverflow.com/questions/14045162/1.html#tab1"><img src="http://stackoverflow.com/questions/14045162/.jpg" /></a><a href="http://stackoverflow.com/questions/14045162/1.html#tab2"><img src="http://stackoverflow.com/questions/14045162/.jpg" /></a><a href="http://stackoverflow.com/questions/14045162/1.html#tab3"><img src="http://stackoverflow.com/questions/14045162/.jpg" /></a>\[/code\]