Bug #21510
closedSection index (pagecontent ...) doesn't work in Internet Explorer 8
0%
Description
The Explorer 8 doesn't jump to the desired content-element .
Apparently is the <a id="cXX"></a>-Tag at the beginning of each content-element the problem. He needs something between...
This is my workaround:
tt_content.stdWrap.dataWrap = <a id="c{field:uid}"></a> |
Typo3 4.2.8; InternetExplorer 8.0; Win XP
(issue imported from #M12530)
Updated by Steffen no-lastname-given about 15 years ago
Explorer 8 on Windows 7 has still problems with my solution. He wants real content.
And I forgot the localisation. Now I use:
tt_content.stdWrap {
dataWrap = <a id="c{field:uid}" class="invisible"> </a> |
prepend.dataWrap = <a id="c{field:_LOCALIZED_UID}" class="invisible"> </a>
}
CSS: .invisible {
display:block; position:absolute; left: -2000px; height: 0px; width: 0px;
}
display: none; will not work.
I know, this is not a nice solution, but I have no other idea.
Is there really nobody else with this problem?
Updated by Alexander Opitz over 11 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0) - TYPO3 Version set to 4.3
The issue is very old, does this issue exists in newer versions of TYPO3 CMS (4.5 or 6.1)?
Updated by Riccardo De Contardi over 11 years ago
In TYPO3 4.5 and 6.1 the empty anchor is no more... the id attribute belongs to the div that surrounds the whole CE:
<div id="c14" class="csc-default">...
And now the jump url works in IE8, so this issue can be closed.
Updated by Alexander Opitz over 11 years ago
- Status changed from Needs Feedback to Closed