Advanced Web Browsing: hitting next with keyboard (single keystroke)

Posted by Dan on Super User See other posts from Super User or by Dan
Published on 2010-03-30T14:56:27Z Indexed on 2010/03/30 15:03 UTC
Read the original article Hit count: 469

I have a website for class that is literally 1000's of pages long, with a next button at the bottom like this:

Prev 1 2 3 4 Next

With the following code, if that helps:

<a href="javascript:gotoModuleObjective(1,1,34,17, 1, 0);">Prev</a> </td>
<td align="center" width="10"> <font color="CC0000">1</font> </td>
<td align="center" width="10"> <a href="javascript:gotoModuleObjective(1,24,33,2,1,0);">2</a> </td>
<td align="center" width="10"> <a href="javascript:gotoModuleObjective(1,24,33,3,1,0);">3</a> </td>
<td align="center" width="10"> <a href="javascript:gotoModuleObjective(1,24,33,4,1,0);">4</a> </td>
<td align="right" style="white-space:nowrap;" width="30"> <a href="javascript:gotoModuleObjective(1, 24,33,2, 1, 0);">Next</a> </td>

The numbers change depending on where you are.

I would like to be able to, from the keyboard, hit the next button. I am using windows, but can switch to any browser, if this is only possible is a given browser. If this can be done with just one keystroke that would be wonderful. Like just hitting the forward arrow would automatically bring click the button called next and bring me to the next page.

Is this possible?

Thanks,

Dan

© Super User or respective owner

Related posts about keyboard-shortcuts

Related posts about hotkeys