My javascript is a little rusty but something like:
// 0 is the index number of the anchor you want to follow.
// You could also use a name.
window.document.location.href = window.document.anchors(0).href;
// 0 is the index number of the anchor you want to follow.
// You could also use a name.
window.document.location.href = window.document.anchors(0).href;
To copy to clipboard, switch view to plain text mode
should do the trick. Alternatively, you can try:
window.document.anchors(0).click();
window.document.anchors(0).click();
To copy to clipboard, switch view to plain text mode
Use the evaluateJavaScript function.
Bookmarks