My issue involves using a named anchor tag:
<table id="search_results" name="search_results">
When I try to link to it like this:
pagename.php#search_results
It works in Firefox and Chrome, but not in IE (8).
I have explored using an <a>
tag as suggested in other posts. Additionally, I attempted giving the search results table the CSS:
display: inline-block
This advice was provided by a commenter on this article. The table in question always has content, which according to the article may be why IE is rejecting it.
If anyone has any suggestions, I would greatly appreciate them.
Thank you!