I have a hyperlink which goes to a named link. <a href="#question">
I needed it also to execute a Javascript so I did:
`<a href="javascript:SomeFunction();#question">`
which didn't work. I guess I have to jump to the named link from Javascript. How do I go to named link from Javascript?