Hi,
I'm trying to create a JavaScript hyperlink which links to a HTML anchor. The only thing is, I'm trying to create it in SharePoint within an .aspx page...
I have a hidden table, which I unhide with a JavaScript function, but the table is at the bottom of the page, so I added an anchor next to the table and tried to hyperlink to it... but it's not working... This is my code:
function GoTo() {
window.location.hash="change"
}
<a name="change"></a>
Any ideas?