Question

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

Était-ce utile?

La solution 2

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

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

Autres conseils

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))
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top