Changes between Version 1 and Version 2 of Ticket #8637, comment 3
- Timestamp:
- Oct 18, 2012, 2:05:52 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8637, comment 3
v1 v2 5 5 edit: Our workaround was to append the current page's full url in front of the hash link for each tab. 6 6 7 if base is http://mysite.com/theme then the code becomes 7 if base is http://mysite.com/theme 8 and current page is http://mysite.com/site 9 then the code becomes 8 10 9 11 {{{ 10 12 <div id="tabs"> 11 13 <ul> 12 <li><a href="http://mysite.com/ theme#tab-1">Tab 1</a></li>13 <li><a href="http://mysite.com/ theme#tab-2">Tab 2</a></li>14 <li><a href="http://mysite.com/site#tab-1">Tab 1</a></li> 15 <li><a href="http://mysite.com/site#tab-2">Tab 2</a></li> 14 16 </ul> 15 17 <div id="tab-1">Content of Tab 1</div>