+ 6
HTML Hyperlink
I have 2 html pages "a.html" and "b.html" I have placed the code <a name="menu"></a> on anywhere of a.html In the same page, if I put <a href="#menu">Goto Menu</a>, it redirect to the menu label. But, I am on the page b.html and want to go to #menu of page a.html, what can I do?
1 Answer
+ 1
Just change the href of the hyperlink on page b to a.html/#menu
I think that should work