Fork me on GitHub
#hoplon
<
2016-02-11
>
dm314:02:12

how do you populate the value of a textarea in Hoplon? Its value is its content, e.g. <textare>foo</textarea>

micha14:02:48

(textarea :text (cell= ...))

dm314:02:31

doesn't work 😕

dm314:02:31

this works: $("textarea").text("hi")

dm314:02:38

will Hoplon execute (do! :action) on the element if I supply an :action to the element's constructor?

micha14:02:12

(textarea "foo") doesn't work?

dm314:02:21

:text cell works

dm314:02:27

was my problem simple_smile

micha14:02:33

👍 great!