Inserted editable table performed using simple combination of table
, tr
and td
tags.
Is it possible to make its cells switchable by clicking tab
button, using td
tabIndex
property (or anything else)?
For now, clicking tab
button inside any cell (td
) inserts 4 spaces inside it, obviously. Of course, I may listen to keydown
or keypress
events and then make something like preventDefault()
and then play with $('#nextTdId').focus()
.
It is only thoughts without any practise. It may be that someone had this problem too.