I have a web page with multiple anchor tags. This page contains links that popup a window with a form on it. When the form in the popup has been submitted I need to reload the parent:
self.opener.location.reload(true);
This works fine but even though the anchor is at the end of the url in the parent window the page is not taken to the anchor on reload but to the top of the page. Any ideas why?
self.opener.location.reload(true);
This works fine but even though the anchor is at the end of the url in the parent window the page is not taken to the anchor on reload but to the top of the page. Any ideas why?