Text selection via keyboard [closed]

2

Have you ever wondered how to select text from a specific part of your navigation?

For example to select within a input box we use directional arrows like this: shit + ⇐ , shit + ⇒ , shit + / kbd> and shit + ⇓ . Or use ctrl + a , thus selecting all the text.

But to select a specific part for a possible ctrl + c , within my keyboard navigation or tab ?

Does anyone know how to resolve this accessibility?

    
asked by anonymous 18.02.2017 / 00:12

1 answer

0

Well I believe it can vary for every OS.

On windows you do the following:

CTRL+F and type the word you are looking for

If you have more than one occurrence, to navigate to the next: ESC . If you have more than one occurrence, to navigate to the next: CTRL+C .

This in Windows 7 ...

But there is a solution to CTRL+LEFT/RIGHT also the question of the CTRL+G attribute that can make HTML containing text navigable through tabindex ...

Example:

<div tabindex="1">Primeira</div>
<div tabindex="2">Segunda</div>

I will see the compatibilities, because I do not know if all versions accept, but div yes ..

    
18.02.2017 / 00:25