John,

>Found a possible bug.
>
>This works on your demo page. (Using FF and Firebug command line of
>course.)
>
>jQuery('[EMAIL PROTECTED]"text"]').setValue('1234')
>
>but this doesn't work.
>
>jQuery('[EMAIL PROTECTED]"text"]').setValue(1234)

Yeah, it currently needs a string. You could probably fix the code by
changing line 160 to:

// if no value, set to empty string
return setValue(this, (!v ? [""] : v.toString().split(defaults.delimiter)));

-Dan

Reply via email to