Dan,
Will that be added to the core build you have... or should I create another version local to prevent upgrades from creating bugs? John Dan G. Switzer, II wrote: > 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 > > >