Pregunta

In jQuery you can force focus onto an input using something along the lines:

$("input[name='text']").focus();

But how is it done in ClojureScript (preferable something Enfocus friendly) ?

¿Fue útil?

Solución 2

I must have been very tired, the following works :)

(ef/at "input[name='text']" (focus))

Otros consejos

Without using enfocus, you can do this by calling javascript functions, e.g.

(-> js/document (.querySelector "input[name='text']") (.focus))

or using .. threading:

(.. js/document (querySelector "input[name='text']") (focus))
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top