vote up 0 vote down star

I am looking for a way to use a textarea and get the values separated by commas, and place them into the array.

Really I am looking for how to auto format the textarea so when the user types something in it either forces or something a comma break. I want to use autocomplete, but I have no data to check it with since this will be a new user sign up.

What's the best approach?

flag

80% accept rate

2 Answers

vote up 1 vote down check

var text = $('#mytextarea').val().split(" ");

link|flag
Just about to post that but shouldn't it be split(",")? – Gavin Gilmour Aug 6 at 16:13
and then use text=text.join(","); – andres descalzo Aug 6 at 16:20
vote up 0 vote down

you can use this plugin to enforce seperation of item in textarea

link|flag
This is really nice, just I do not have data to pull from, and what if a user needed to create a new value? – matthewb Aug 6 at 17:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.