Hi, say I have the following HTML code line:
<form method=get name="mainform" action="purchaseSummary.jsp#SearchResults">
In Windows, if I click on a link that runs "Submit" for this form, the resultant URL is ok. In Windows, IE chops off the anchor but stores it in memory and then goes to the anchor location once the page is loaded.
But in MacOS, the same code produces the following URL:
...purchaseSummary.jsp#SearchResults?Action=ShowChart...
This fails in IE, because the anchor needs to be at the END of the URL and not in the middle. In the above case, everything after the "#" is ignored including all the parameters...
Any ideas? Is this an IE bug in MacOS or is there a workaround?
Cheers,
-Lokimelt
<form method=get name="mainform" action="purchaseSummary.jsp#SearchResults">
In Windows, if I click on a link that runs "Submit" for this form, the resultant URL is ok. In Windows, IE chops off the anchor but stores it in memory and then goes to the anchor location once the page is loaded.
But in MacOS, the same code produces the following URL:
...purchaseSummary.jsp#SearchResults?Action=ShowChart...
This fails in IE, because the anchor needs to be at the END of the URL and not in the middle. In the above case, everything after the "#" is ignored including all the parameters...
Any ideas? Is this an IE bug in MacOS or is there a workaround?
Cheers,
-Lokimelt