Navegação avançada na Web: clique em próximo com o teclado (pressionamento de tecla único)

3

Eu tenho um site para uma turma que tem literalmente 1000 páginas, com um próximo botão na parte inferior assim:

Anterior 1 2 3 4 Próxima

Com o seguinte código, se isso ajudar:

<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>

Os números mudam dependendo de onde você está.

Eu gostaria de poder, pelo teclado, apertar o próximo botão. Eu estou usando o Windows, mas pode mudar para qualquer navegador, se isso só for possível é um determinado navegador. Se isso puder ser feito com apenas um pressionamento de tecla , isso seria maravilhoso. Assim como apertar a seta para frente, traria automaticamente o botão chamado next e me levaria para a próxima página.

Isso é possível?

Obrigado,

Dan

    
por Jarvin 30.03.2010 / 16:56

3 respostas

4

Eu sei que o Opera tem uma boa função "fast forward" (que tenta adivinhar o próximo link), mas eu Não sei como isso aconteceria com o seu site em particular, especialmente se você estiver falando sobre links de javascript e não sobre links regulares.

Então, só posso propor que você experimente em seu site (o avanço rápido pode ser ativado com gestos à direita ou o Espaço repetidamente, até chegar ao final da página, se bem me lembro). Experimente com qualquer pesquisa do Google para ter certeza de que você está usando bem, funciona facilmente neles.

    
por 30.03.2010 / 17:10
2

AutoPager para Firefox

automatically loads next pages when you reach the end of a page. It works on a ton of sites,Google,Yahoo.. It works well with most other add-ons adblock plus, WOT and most of the greasemonkey scripts... [It] automatically loads the next page of a site inline when you reach the end of the current page for infinite scrolling of content.

NextPage para Firefox

rebinds SPC key so that it scroll page when there is more on the page, it go to next page when at the bottom of a page. You can also use n key anytime directly to go to next page.

Here is a list of keys that get rebinded: SPC scroll up/next page. n next page. p history back. 2 next page. 1 history back. Alt-n next page (useful when cursor is at location bar or search box)

    
por 30.03.2010 / 21:44
1

Se você tiver controle sobre o HTML, tente definir uma chave de acesso para o próximo botão. Este artigo discute alguns problemas com esse recurso de acessibilidade subutilizado.

Além disso, tente um script do Greasemonkey.

    
por 30.03.2010 / 17:05